1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/third_party_rules/access_rules.py b/synapse/third_party_rules/access_rules.py
index 41862f6d0b..f564c0484c 100644
--- a/synapse/third_party_rules/access_rules.py
+++ b/synapse/third_party_rules/access_rules.py
@@ -483,7 +483,6 @@ class RoomAccessRules(object):
"""
return rule != ACCESS_RULE_DIRECT
-
def _on_room_name_change(self, event, rule):
"""Check whether a change of room name is allowed.
The current rule is to forbid such a change in direct chats but allow it
@@ -497,7 +496,6 @@ class RoomAccessRules(object):
"""
return rule != ACCESS_RULE_DIRECT
-
def _on_room_topic_change(self, event, rule):
"""Check whether a change of room topic is allowed.
The current rule is to forbid such a change in direct chats but allow it
|