Skip to content

Commit

Permalink
Removed stale code introduced in fc7f9e9.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Nov 25, 2011
1 parent c45d872 commit b7583b0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions compressor/base.py
Expand Up @@ -225,12 +225,6 @@ def output(self, mode='file', forced=False):

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)
Expand Down

0 comments on commit b7583b0

Please sign in to comment.