diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-05-21 12:02:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 12:02:01 -0400 |
commit | c5413d0e9ef6afa9cb5140774acfb4954fe0bf37 (patch) | |
tree | 417e0a78d2c2517cc56db8008ae5b2067267420f /synapse | |
parent | Fixed removal of new presence stream states (#10014) (diff) | |
download | synapse-c5413d0e9ef6afa9cb5140774acfb4954fe0bf37.tar.xz |
Remove unused properties from the SpaceSummaryHandler. (#10038)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/space_summary.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/handlers/space_summary.py b/synapse/handlers/space_summary.py index 8d49ba8164..abd9ddecca 100644 --- a/synapse/handlers/space_summary.py +++ b/synapse/handlers/space_summary.py @@ -50,8 +50,6 @@ class SpaceSummaryHandler: def __init__(self, hs: "HomeServer"): self._clock = hs.get_clock() self._auth = hs.get_auth() - self._room_list_handler = hs.get_room_list_handler() - self._state_handler = hs.get_state_handler() self._event_auth_handler = hs.get_event_auth_handler() self._store = hs.get_datastore() self._event_serializer = hs.get_event_client_serializer() |