summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-01-23 13:25:07 +0000
committerMark Haines <mark.haines@matrix.org>2015-01-23 13:25:07 +0000
commitc4652d7772a0d9b374fc178502a71efd03d35d48 (patch)
tree62fece1cc473923d5bd4e72dac9035ca9e81ea1f
parentReplace hs.parse_roomalias with RoomAlias.from_string (diff)
downloadsynapse-c4652d7772a0d9b374fc178502a71efd03d35d48.tar.xz
Remove hs.parse_eventid
-rw-r--r--synapse/server.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/synapse/server.py b/synapse/server.py

index 41a26ad91a..32013b1a91 100644 --- a/synapse/server.py +++ b/synapse/server.py
@@ -26,7 +26,6 @@ from synapse.api.auth import Auth from synapse.handlers import Handlers from synapse.state import StateHandler from synapse.storage import DataStore -from synapse.types import EventID from synapse.util import Clock from synapse.util.distributor import Distributor from synapse.util.lockutils import LockManager @@ -124,14 +123,6 @@ class BaseHomeServer(object): setattr(BaseHomeServer, "get_%s" % (depname), _get) - # TODO: Why are these parse_ methods so high up along with other globals? - # Surely these should be in a util package or in the api package? - - def parse_eventid(self, s): - """Parse the string given by 's' as a Event ID and return a EventID - object.""" - return EventID.from_string(s) - def serialize_event(self, e, as_client_event=True): return serialize_event(self, e, as_client_event)