module SimpleCov::ResultMerger

def stored_data

Returns the contents of the resultset cache as a string or if the file is missing or empty nil
def stored_data
  synchronize_resultset do
    return unless File.exist?(resultset_path)
    data = File.read(resultset_path)
    return if data.nil? || data.length < 2
    data
  end
end