diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-01-04 16:10:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 16:10:27 +0000 |
commit | 2359ee3864a065229c80e3ff58faa981edd24558 (patch) | |
tree | ed211ee7846ccef031d5e1b114f9bf2d3ccdc441 /changelog.d | |
parent | Better error messages from `get_create_event_for_room` (#11638) (diff) | |
download | synapse-2359ee3864a065229c80e3ff58faa981edd24558.tar.xz |
Remove redundant `get_current_events_token` (#11643)
* Push `get_room_{min,max_stream_ordering}` into StreamStore Both implementations of this are identical, so we may as well push it down and get rid of the abstract base class nonsense. * Remove redundant `StreamStore` class This is empty now * Remove redundant `get_current_events_token` This was an exact duplicate of `get_room_max_stream_ordering`, so let's get rid of it. * newsfile
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/11643.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/11643.misc b/changelog.d/11643.misc new file mode 100644 index 0000000000..1c3b3071f6 --- /dev/null +++ b/changelog.d/11643.misc @@ -0,0 +1 @@ +Remove redundant `get_current_events_token` method. |