lib/new_relic/agent/stats.rb in newrelic_rpm-4.0.0.332 vs lib/new_relic/agent/stats.rb in newrelic_rpm-4.1.0.333
- old
+ new
@@ -139,21 +139,7 @@
def min_time_less?(other)
(other.min_call_time < min_call_time && other.call_count > 0) || call_count == 0
end
end
-
- class ChainedStats
- attr_accessor :scoped_stats, :unscoped_stats
-
- def initialize(scoped_stats, unscoped_stats)
- @scoped_stats = scoped_stats
- @unscoped_stats = unscoped_stats
- end
-
- def method_missing(method, *args)
- unscoped_stats.send(method, *args)
- scoped_stats.send(method, *args)
- end
- end
end
end