summary refs log tree commit diff
path: root/synapse/storage/stream.py
diff options
context:
space:
mode:
authorDaniel Wagner-Hall <daniel@matrix.org>2015-11-02 15:31:57 +0000
committerDaniel Wagner-Hall <daniel@matrix.org>2015-11-02 15:31:57 +0000
commit771ca56c886dd08f707447cfff70acd3ba73e98c (patch)
tree6875c341150093b66eb8915e7213fe824932f6d3 /synapse/storage/stream.py
parentRemove unused arguments and code (diff)
downloadsynapse-771ca56c886dd08f707447cfff70acd3ba73e98c.tar.xz
Remove more unused parameters
Diffstat (limited to 'synapse/storage/stream.py')
-rw-r--r--synapse/storage/stream.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/storage/stream.py b/synapse/storage/stream.py
index 15d4c2bf68..c728013f4c 100644
--- a/synapse/storage/stream.py
+++ b/synapse/storage/stream.py
@@ -158,8 +158,7 @@ class StreamStore(SQLBaseStore):
         defer.returnValue(results)
 
     @log_function
-    def get_room_events_stream(self, user_id, from_key, to_key, room_id,
-                               limit=0):
+    def get_room_events_stream(self, user_id, from_key, to_key, limit=0):
         current_room_membership_sql = (
             "SELECT m.room_id FROM room_memberships as m "
             " INNER JOIN current_state_events as c"