Code cleanup, remove dead code and fix compilation issue

This commit is contained in:
Benoit Marty 2025-09-10 14:08:10 +02:00
parent f5882fef11
commit bb39a9f399
17 changed files with 13 additions and 33 deletions

View file

@ -20,5 +20,3 @@ value class RoomId(val value: String) : Serializable {
override fun toString(): String = value
}
fun RoomId.toSpaceId(): SpaceId = SpaceId(this.value)

View file

@ -1,5 +1,5 @@
/*
* Copyright 2023, 2024 New Vector Ltd.
* Copyright 2025 New Vector Ltd.
*
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE files in the repository root for full details.
@ -22,4 +22,3 @@ interface SpaceRoomList {
val paginationStatusFlow: StateFlow<PaginationStatus>
suspend fun paginate(): Result<Unit>
}