Commit fdb023e7 authored by Vincent Pelletier's avatar Vincent Pelletier

Remove dead code.

parent e245ddc9
......@@ -196,9 +196,6 @@ class GenericSiteStats(object):
self.error_url_count[status][url].append(match.group('referer'))
def getApdexData(self):
apdex = APDEXStats(self.threshold, None)
for data in self.apdex.itervalues():
apdex.accumulateFrom(data)
return [
(date, apdex.getApdex() * 100, apdex.hit) for date, apdex
in sorted(self.apdex.iteritems(), key=ITEMGETTER0)]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment