From 23673a9ca44b5e8d5fec4f2cdd89f3e4d8ea9627 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Fri, 18 Jul 2025 22:01:00 +0300 Subject: [PATCH] Removed explicit type aerguments --- app/src/main/kotlin/com/tutpro/baresip/Contact.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/Contact.kt b/app/src/main/kotlin/com/tutpro/baresip/Contact.kt index 6cfa4a3b..b34bd686 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/Contact.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/Contact.kt @@ -216,7 +216,7 @@ sealed class Contact { val contacts = String(content) var contactNo = 0 val baseId = System.currentTimeMillis() - BaresipService.baresipContacts.value = mutableListOf() + BaresipService.baresipContacts.value = mutableListOf() contacts.lines().forEach { val parts = it.split("\"") if (parts.size == 3) { @@ -256,7 +256,7 @@ sealed class Contact { } fun contactsUpdate() { - BaresipService.contacts = mutableListOf() + BaresipService.contacts = mutableListOf() if (BaresipService.contactsMode != "android") for (c in BaresipService.baresipContacts.value) BaresipService.contacts.add(c.copy())