From 91a18f1dea2e728ee4db8a5873baf32f0864b860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 14 Jan 2018 14:14:58 +0100 Subject: [PATCH] diamond operator --- .../flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimpleOld.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimpleOld.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimpleOld.java index c647a0233..23c135d87 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimpleOld.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimpleOld.java @@ -160,7 +160,7 @@ public class AVM2DeobfuscatorSimpleOld extends SWFDecompilerAdapter { } // find jump targets - List jumpTargets = new ArrayList(); + List jumpTargets = new ArrayList<>(); for (int i = 0; i < code.code.size(); i++) { AVM2Instruction ins = code.code.get(i); if (ins.definition instanceof JumpIns) {