summary refs log tree commit diff
path: root/synapse/handlers/__init__.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-05-16 20:19:26 +0100
committerMark Haines <mark.haines@matrix.org>2016-05-16 20:19:26 +0100
commitf68eea808ad20362fedfba8ad95363b1694812b5 (patch)
tree25a540bccb8630da2ee84f5de6730839739c994e /synapse/handlers/__init__.py
parentMerge branch 'markjh/liberate_presence_handler' into markjh/liberate_sync_han... (diff)
downloadsynapse-f68eea808ad20362fedfba8ad95363b1694812b5.tar.xz
Move SyncHandler out of the Handlers object
Diffstat (limited to 'synapse/handlers/__init__.py')
-rw-r--r--synapse/handlers/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/handlers/__init__.py b/synapse/handlers/__init__.py
index 60e31b68ff..e1fc9a58ad 100644
--- a/synapse/handlers/__init__.py
+++ b/synapse/handlers/__init__.py
@@ -28,7 +28,6 @@ from .directory import DirectoryHandler
 from .typing import TypingNotificationHandler
 from .admin import AdminHandler
 from .appservice import ApplicationServicesHandler
-from .sync import SyncHandler
 from .auth import AuthHandler
 from .identity import IdentityHandler
 from .receipts import ReceiptsHandler
@@ -65,7 +64,6 @@ class Handlers(object):
                 as_api=asapi
             )
         )
-        self.sync_handler = SyncHandler(hs)
         self.auth_handler = AuthHandler(hs)
         self.identity_handler = IdentityHandler(hs)
         self.search_handler = SearchHandler(hs)