mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-18 04:08:44 +03:00
Remove useless explicit field type
This commit is contained in:
parent
2be2a05795
commit
90d688c222
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ open class CreateRoomParams {
|
|||
* A list of user IDs to invite to the room.
|
||||
* This will tell the server to invite everyone in the list to the newly created room.
|
||||
*/
|
||||
var invitedUserIds: MutableList<String> = mutableListOf()
|
||||
var invitedUserIds = mutableListOf<String>()
|
||||
|
||||
/**
|
||||
* A list of objects representing third party IDs to invite into the room.
|
||||
|
|
Loading…
Add table
Reference in a new issue