Fixed serialVersionUID definitions

This commit is contained in:
Juha Heinanen
2026-07-18 09:59:30 +03:00
parent e9690a5950
commit 991ff8fc3c
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class CallHistoryNew(val aor: String, val peerUri: String, val direction: String
companion object {
@Suppress("unused")
private const val serialVersionUID: Long = 3
const val serialVersionUID: Long = 3L
private const val CALL_HISTORY_SIZE = 256
fun aorLatestPeerUri(aor: String): String? {

View File

@ -669,7 +669,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
const val serialVersionUID: Long = -29238082928391L
}
}