Remove unused MatrixClient.availableSlidingSyncVersions().

This commit is contained in:
Benoit Marty 2025-09-09 15:19:19 +02:00
parent 0c436451b9
commit a570b0d4ff
4 changed files with 1 additions and 23 deletions

View file

@ -689,12 +689,6 @@ class RustMatrixClient(
})
}.buffer(Channel.UNLIMITED)
override suspend fun availableSlidingSyncVersions(): Result<List<SlidingSyncVersion>> = withContext(sessionDispatcher) {
runCatchingExceptions {
innerClient.availableSlidingSyncVersions().map { it.map() }
}
}
override suspend fun currentSlidingSyncVersion(): Result<SlidingSyncVersion> = withContext(sessionDispatcher) {
runCatchingExceptions {
innerClient.session().slidingSyncVersion.map()