Variable 'encryptionKey' initializer 'null' is redundant
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
This commit is contained in:
parent
2a78396101
commit
57775918c0
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ public class EncryptedBackupBroadcastReceiver extends BackupBroadcastReceiver {
|
|||
return;
|
||||
}
|
||||
|
||||
SecretKey encryptionKey = null;
|
||||
SecretKey encryptionKey;
|
||||
|
||||
if (settings.getEncryption() == Constants.EncryptionType.KEYSTORE) {
|
||||
encryptionKey = KeyStoreHelper.loadEncryptionKeyFromKeyStore(context, false);
|
||||
|
|
Loading…
Reference in a new issue