Skip to content
Snippets Groups Projects
Commit 22b37b75 authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Kill unused CounterMetric.fetch() method

parent b0cf8673
No related branches found
No related tags found
No related merge requests found
...@@ -73,9 +73,6 @@ class CounterMetric(BaseMetric): ...@@ -73,9 +73,6 @@ class CounterMetric(BaseMetric):
else: else:
self.counts[values] += 1 self.counts[values] += 1
def fetch(self):
return dict(self.counts)
def render_item(self, k): def render_item(self, k):
return ["%s%s %d" % (self.name, self._render_key(k), self.counts[k])] return ["%s%s %d" % (self.name, self._render_key(k), self.counts[k])]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment