mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-21 20:49:36 +01:00
fix nullable createRoom param for FakeRepository classes
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
9dd7d1588b
commit
52652834f2
@ -20,7 +20,7 @@ class FakeRepositoryError : ContactsRepository {
|
|||||||
@Suppress("Detekt.TooGenericExceptionThrown")
|
@Suppress("Detekt.TooGenericExceptionThrown")
|
||||||
override suspend fun createRoom(
|
override suspend fun createRoom(
|
||||||
roomType: String,
|
roomType: String,
|
||||||
sourceType: String,
|
sourceType: String?,
|
||||||
userId: String,
|
userId: String,
|
||||||
conversationName: String?
|
conversationName: String?
|
||||||
): RoomOverall {
|
): RoomOverall {
|
||||||
|
@ -19,7 +19,7 @@ class FakeRepositorySuccess : ContactsRepository {
|
|||||||
|
|
||||||
override suspend fun createRoom(
|
override suspend fun createRoom(
|
||||||
roomType: String,
|
roomType: String,
|
||||||
sourceType: String,
|
sourceType: String?,
|
||||||
userId: String,
|
userId: String,
|
||||||
conversationName: String?
|
conversationName: String?
|
||||||
): RoomOverall {
|
): RoomOverall {
|
||||||
|
Loading…
Reference in New Issue
Block a user