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
  if File.exist?(resultset_path) and stored_data = File.read(resultset_path) and stored_data.length >= 2
    stored_data
  else
    nil
  end
end