From 71119f1c76c875dec2a895d707766b3202c0475b Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Sun, 12 Apr 2026 12:17:46 +0300 Subject: [PATCH] Removed unused function and added unused suppress --- app/src/main/kotlin/com/tutpro/baresip/Utils.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/Utils.kt b/app/src/main/kotlin/com/tutpro/baresip/Utils.kt index 1a488777..173d93e6 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/Utils.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/Utils.kt @@ -328,11 +328,6 @@ object Utils { return false } - fun customParams(params: String): String { - return params.substringAfter("last=empty") - - } - fun checkHostPortParams(hpp: String) : Boolean { val restParams = hpp.split(";", limit = 2) return if (restParams.size == 1) @@ -633,6 +628,7 @@ object Utils { class Crypto(val salt: ByteArray, val iter: Int, val iv: ByteArray, val data: ByteArray): Serializable { companion object { + @Suppress("unused") private const val serialVersionUID: Long = -29238082928391L } }