Removed stale code introduced in fc7f9e9991.

This commit is contained in:
Jannis Leidel
2011-11-25 22:09:42 +01:00
parent c45d8722db
commit b7583b0d2b

View File

@@ -225,12 +225,6 @@ class Compressor(object):
return output
def _filter_mode(self, content, mode):
return filter(lambda x: x[0] == mode, content)
def _exclude_mode(self, content, mode):
return filter(lambda x: x[0] != mode, content)
def handle_output(self, mode, content, forced, basename=None):
# Then check for the appropriate output method and call it
output_func = getattr(self, "output_%s" % mode, None)