summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-11-04 14:16:19 +0000
committerErik Johnston <erik@matrix.org>2014-11-04 14:16:19 +0000
commitd7412c4df1cdfc1128b6d63a38c4ac1d6f08b76b (patch)
tree4a8aab321f97630dfa6d19ca371dcca6c90791a1 /synapse
parentRemove unused imports (diff)
downloadsynapse-d7412c4df1cdfc1128b6d63a38c4ac1d6f08b76b.tar.xz
Remove unused interface
Diffstat (limited to 'synapse')
-rw-r--r--synapse/federation/replication.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/synapse/federation/replication.py b/synapse/federation/replication.py
index 838e660a46..99dd390a64 100644
--- a/synapse/federation/replication.py
+++ b/synapse/federation/replication.py
@@ -533,14 +533,6 @@ class ReplicationLayer(object):
         return "<ReplicationLayer(%s)>" % self.server_name
 
 
-class ReplicationHandler(object):
-    """This defines the methods that the :py:class:`.ReplicationLayer` will
-    use to communicate with the rest of the home server.
-    """
-    def on_receive_pdu(self, pdu):
-        raise NotImplementedError("on_receive_pdu")
-
-
 class _TransactionQueue(object):
     """This class makes sure we only have one transaction in flight at
     a time for a given destination.