module SimpleCov::ResultMerger

def results

dropped. Returns an array of SimpleCov::Result items.
All results that are above the SimpleCov.merge_timeout will be
of SimpleCov::Result from that.
Gets the resultset hash and re-creates all included instances
def results
  results = Result.from_hash(resultset)
  results.select { |result| result.time_since_creation < SimpleCov.merge_timeout }
end