summary refs log tree commit diff
path: root/synapse/storage/events.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-09-23 10:33:06 +0100
committerMark Haines <mark.haines@matrix.org>2015-09-23 10:33:06 +0100
commit92d8d724c5c34f0a83cbd8c5dce7f0c0c21a1568 (patch)
treeb767e12618616509915f7e9ce0cb38cfb5d2f17c /synapse/storage/events.py
parentRemove unused functions from synapse/storage/event_federation.py (diff)
downloadsynapse-92d8d724c5c34f0a83cbd8c5dce7f0c0c21a1568.tar.xz
Remove unused functions from synapse/storage/events.py
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r--synapse/storage/events.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py
index 46df6b4d6d..416ef6af93 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -890,22 +890,11 @@ class EventsStore(SQLBaseStore):
 
         return ev
 
-    def _parse_events(self, rows):
-        return self.runInteraction(
-            "_parse_events", self._parse_events_txn, rows
-        )
-
     def _parse_events_txn(self, txn, rows):
         event_ids = [r["event_id"] for r in rows]
 
         return self._get_events_txn(txn, event_ids)
 
-    def _has_been_redacted_txn(self, txn, event):
-        sql = "SELECT event_id FROM redactions WHERE redacts = ?"
-        txn.execute(sql, (event.event_id,))
-        result = txn.fetchone()
-        return result[0] if result else None
-
     @defer.inlineCallbacks
     def count_daily_messages(self):
         """