Skip to content
Snippets Groups Projects
Unverified Commit f4884444 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

remove unused room_version_to_event_format (#6857)

parent e1b24032
No related branches found
No related tags found
No related merge requests found
Refactoring work in preparation for changing the event redaction algorithm.
...@@ -21,8 +21,7 @@ import six ...@@ -21,8 +21,7 @@ import six
from unpaddedbase64 import encode_base64 from unpaddedbase64 import encode_base64
from synapse.api.errors import UnsupportedRoomVersionError from synapse.api.room_versions import EventFormatVersions
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS, EventFormatVersions
from synapse.types import JsonDict from synapse.types import JsonDict
from synapse.util.caches import intern_dict from synapse.util.caches import intern_dict
from synapse.util.frozenutils import freeze from synapse.util.frozenutils import freeze
...@@ -408,27 +407,6 @@ class FrozenEventV3(FrozenEventV2): ...@@ -408,27 +407,6 @@ class FrozenEventV3(FrozenEventV2):
return self._event_id return self._event_id
def room_version_to_event_format(room_version):
"""Converts a room version string to the event format
Args:
room_version (str)
Returns:
int
Raises:
UnsupportedRoomVersionError if the room version is unknown
"""
v = KNOWN_ROOM_VERSIONS.get(room_version)
if not v:
# this can happen if support is withdrawn for a room version
raise UnsupportedRoomVersionError()
return v.event_format
def event_type_from_format_version(format_version): def event_type_from_format_version(format_version):
"""Returns the python type to use to construct an Event object for the """Returns the python type to use to construct an Event object for the
given event format version. given event format version.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment