summary refs log tree commit diff
path: root/synapse/federation
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-01-29 12:06:31 +0000
committerGitHub <noreply@github.com>2020-01-29 12:06:31 +0000
commita855b7c3a82458602bd62ed00bffed269f2acfec (patch)
tree9d92d3bf582320dbaed2280ab955ed221a3f6a24 /synapse/federation
parentMerge pull request #6790 from matrix-org/rav/msc2260.1 (diff)
downloadsynapse-a855b7c3a82458602bd62ed00bffed269f2acfec.tar.xz
Remove unused DeviceRow class (#6800)
Diffstat (limited to 'synapse/federation')
-rw-r--r--synapse/federation/send_queue.py21
1 files changed, 1 insertions, 20 deletions
diff --git a/synapse/federation/send_queue.py b/synapse/federation/send_queue.py
index 0bb82a6bb3..001bb304ae 100644
--- a/synapse/federation/send_queue.py
+++ b/synapse/federation/send_queue.py
@@ -454,28 +454,9 @@ class EduRow(BaseFederationRow, namedtuple("EduRow", ("edu",))):  # Edu
         buff.edus.setdefault(self.edu.destination, []).append(self.edu)
 
 
-class DeviceRow(BaseFederationRow, namedtuple("DeviceRow", ("destination",))):  # str
-    """Streams the fact that either a) there is pending to device messages for
-    users on the remote, or b) a local users device has changed and needs to
-    be sent to the remote.
-    """
-
-    TypeId = "d"
-
-    @staticmethod
-    def from_data(data):
-        return DeviceRow(destination=data["destination"])
-
-    def to_data(self):
-        return {"destination": self.destination}
-
-    def add_to_buffer(self, buff):
-        buff.device_destinations.add(self.destination)
-
-
 TypeToRow = {
     Row.TypeId: Row
-    for Row in (PresenceRow, PresenceDestinationsRow, KeyedEduRow, EduRow, DeviceRow)
+    for Row in (PresenceRow, PresenceDestinationsRow, KeyedEduRow, EduRow,)
 }