Fixed minor formatting.

This commit is contained in:
Maschell 2018-12-06 15:32:40 +01:00
parent e7e7ffe1f1
commit 7b27478160

View File

@ -82,8 +82,7 @@ public final class Ticket {
} }
private static byte[] calculateDecryptedKey(byte[] encryptedKey, byte[] IV) { private static byte[] calculateDecryptedKey(byte[] encryptedKey, byte[] IV) {
AESDecryption decryption = new AESDecryption(Settings.commonKey, IV) { AESDecryption decryption = new AESDecryption(Settings.commonKey, IV);
};
return decryption.decrypt(encryptedKey); return decryption.decrypt(encryptedKey);
} }