Remove unnecessary force and safe checks.

Resolves #13766
This commit is contained in:
Grzegorz Bobryk
2024-11-03 13:35:20 +01:00
committed by Greyson Parrelli
parent 3a5dc4e731
commit be92b3cf0a
6 changed files with 7 additions and 7 deletions

View File

@@ -158,7 +158,7 @@ data class SafetyNumberFingerprint(
result = 31 * result + (localIdentityKey?.hashCode() ?: 0)
result = 31 * result + (remoteStableIdentifier?.contentHashCode() ?: 0)
result = 31 * result + (remoteIdentityKey?.hashCode() ?: 0)
result = 31 * result + (fingerprint?.hashCode() ?: 0)
result = 31 * result + fingerprint.hashCode()
return result
}
}