Update SDK to 2.0.0-4373-3c666766 (#6311)

Co-authored-by: bw-ghapp[bot] <178206702+bw-ghapp[bot]@users.noreply.github.com>
Co-authored-by: Patrick Honkonen <phonkonen@bitwarden.com>
This commit is contained in:
bw-ghapp[bot]
2026-01-05 13:27:32 -05:00
committed by GitHub
parent e6c46169fb
commit 03562a8605
3 changed files with 1 additions and 7 deletions

View File

@@ -710,7 +710,6 @@ class VaultLockManagerImpl(
is InitUserCryptoMethod.DecryptedKey,
is InitUserCryptoMethod.DeviceKey,
is InitUserCryptoMethod.KeyConnector,
is InitUserCryptoMethod.Password,
is InitUserCryptoMethod.Pin,
is InitUserCryptoMethod.PinEnvelope,
-> return

View File

@@ -15,9 +15,4 @@ val InitUserCryptoMethod.logTag: String
is InitUserCryptoMethod.Pin -> "Pin"
is InitUserCryptoMethod.PinEnvelope -> "Pin Envelope"
is InitUserCryptoMethod.MasterPasswordUnlock -> "Master Password Unlock"
is InitUserCryptoMethod.Password -> {
// PM-27290: InitUserCryptoMethod.Password will be removed from the SDK in a future
// release. This else branch can be cleaned up afterwards.
throw IllegalArgumentException("Unsupported InitUserCryptoMethod: $this")
}
}