Merge pull request #5306 from element-hq/feature/bma/removeDeadCode

Remove dead code
This commit is contained in:
Benoit Marty 2025-09-18 18:11:06 +02:00 committed by GitHub
commit e980936162
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 1 additions and 44 deletions

View file

@ -688,12 +688,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()