Browse Source

synapse/app/homeserver.py:GzipFile was unused

Mark Haines 8 years ago
parent
commit
184ba0968a
1 changed files with 0 additions and 6 deletions
  1. 0 6
      synapse/app/homeserver.py

+ 0 - 6
synapse/app/homeserver.py

@@ -85,12 +85,6 @@ import time
 logger = logging.getLogger("synapse.app.homeserver")
 
 
-class GzipFile(File):
-    def getChild(self, path, request):
-        child = File.getChild(self, path, request)
-        return EncodingResourceWrapper(child, [GzipEncoderFactory()])
-
-
 def gz_wrap(r):
     return EncodingResourceWrapper(r, [GzipEncoderFactory()])