Quiet excessive warnings.

This commit is contained in:
Greyson Parrelli
2025-03-31 09:01:34 -04:00
parent 2b94489721
commit 0b315220ee
10 changed files with 53 additions and 13 deletions

View File

@@ -6,6 +6,7 @@
package org.thoughtcrime.securesms.registration.viewmodel
import android.os.Parcelable
import kotlinx.parcelize.IgnoredOnParcel
import kotlinx.parcelize.Parcelize
import org.whispersystems.signalservice.api.svr.Svr3Credentials
import org.whispersystems.signalservice.internal.push.AuthCredentials
@@ -23,7 +24,10 @@ data class SvrAuthCredentialSet(
ParcelableSvr3AuthCredentials.createOrNull(svr3Credentials)
)
@IgnoredOnParcel
val svr2: AuthCredentials? = svr2Credentials?.credentials()
@IgnoredOnParcel
val svr3: Svr3Credentials? = svr3Credentials?.credentials()
@Parcelize