Rename RoomDirectoryList.State to RoomDirectoryList.SearchResult to avoid this class to be checked for stability.
This commit is contained in:
parent
5a48a43655
commit
9410a727b6
5 changed files with 12 additions and 12 deletions
|
|
@ -12,7 +12,7 @@ import kotlinx.coroutines.flow.Flow
|
|||
import kotlinx.coroutines.flow.emptyFlow
|
||||
|
||||
class FakeRoomDirectoryList(
|
||||
override val state: Flow<RoomDirectoryList.State> = emptyFlow(),
|
||||
override val state: Flow<RoomDirectoryList.SearchResult> = emptyFlow(),
|
||||
val filterLambda: (String?, Int, String?) -> Result<Unit> = { _, _, _ -> Result.success(Unit) },
|
||||
val loadMoreLambda: () -> Result<Unit> = { Result.success(Unit) }
|
||||
) : RoomDirectoryList {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue