summary refs log tree commit diff
path: root/synapse/handlers/room.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2017-10-20 16:33:15 +0100
committerRichard van der Hoff <richard@matrix.org>2017-10-20 22:14:55 +0100
commit631d7b87b50b7263a2f9a3f89fc196272011bf37 (patch)
treed0b93dc743a38764ea5d240889fbc72804786486 /synapse/handlers/room.py
parentMerge pull request #2559 from matrix-org/erikj/group_id_validation (diff)
downloadsynapse-631d7b87b50b7263a2f9a3f89fc196272011bf37.tar.xz
Remove pointless create() method
It just calls the constructor, so we may as well kill it rather than having
random codepaths.
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r--synapse/handlers/room.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py
index 535ba9517c..e945bd35bc 100644
--- a/synapse/handlers/room.py
+++ b/synapse/handlers/room.py
@@ -91,7 +91,7 @@ class RoomCreationHandler(BaseHandler):
                 if wchar in config["room_alias_name"]:
                     raise SynapseError(400, "Invalid characters in room alias")
 
-            room_alias = RoomAlias.create(
+            room_alias = RoomAlias(
                 config["room_alias_name"],
                 self.hs.hostname,
             )
@@ -123,7 +123,7 @@ class RoomCreationHandler(BaseHandler):
         while attempts < 5:
             try:
                 random_string = stringutils.random_string(18)
-                gen_room_id = RoomID.create(
+                gen_room_id = RoomID(
                     random_string,
                     self.hs.hostname,
                 )