From 7b27478160eeb0a18a1f6c90184ea096d490bd1d Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 6 Dec 2018 15:32:40 +0100 Subject: [PATCH] Fixed minor formatting. --- src/de/mas/wiiu/jnus/entities/Ticket.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/de/mas/wiiu/jnus/entities/Ticket.java b/src/de/mas/wiiu/jnus/entities/Ticket.java index dbd8708..adfdad4 100644 --- a/src/de/mas/wiiu/jnus/entities/Ticket.java +++ b/src/de/mas/wiiu/jnus/entities/Ticket.java @@ -82,8 +82,7 @@ public final class Ticket { } 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); }