Skip to content
Snippets Groups Projects
Commit 4d8e1e1f authored by Erik Johnston's avatar Erik Johnston
Browse files

Remove added unused methods

parent afef6f5d
No related branches found
No related tags found
No related merge requests found
......@@ -151,12 +151,5 @@ class CacheMetric(object):
def inc_misses(self, *values):
self.total.inc(*values)
def inc_hits_by(self, inc, *values):
self.hits.inc_by(inc, *values)
self.total.inc_by(inc, *values)
def inc_misses_by(self, inc, *values):
self.total.inc_by(inc, *values)
def render(self):
return self.hits.render() + self.total.render() + self.size.render()
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