diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:25:30 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:25:30 +0100 |
commit | 184ba0968a08e537dccc65d8fe75f65b86e22504 (patch) | |
tree | 14e2e7e224b4a143e97048a7831a95072b3abe81 /synapse | |
parent | synapse/streams/events.py:StreamSource was unused (diff) | |
download | synapse-184ba0968a08e537dccc65d8fe75f65b86e22504.tar.xz |
synapse/app/homeserver.py:GzipFile was unused
Diffstat (limited to 'synapse')
-rwxr-xr-x | synapse/app/homeserver.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index 21840e4a28..349a4c1774 100755 --- a/synapse/app/homeserver.py +++ b/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()]) |