Remove useless explicit field type

This commit is contained in:
Florian Renaud 2022-08-25 14:07:50 +02:00
parent 2be2a05795
commit 90d688c222

View file

@ -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.