From cd4ba191e3a2bfa5a277e9ff33098c79e1caf9ef Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Wed, 2 Sep 2015 12:37:41 +0200 Subject: [PATCH] Unused parameter removed --- .../flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimple.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimple.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimple.java index ede6bf919..7ab1f83c9 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimple.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/deobfuscation/AVM2DeobfuscatorSimple.java @@ -188,7 +188,7 @@ public class AVM2DeobfuscatorSimple implements SWFDecompilerListener { } ExecutionResult result = new ExecutionResult(); - executeInstructions(staticRegs, classIndex, isStatic, body, scriptIndex, abc, code, localData, i, code.code.size() - 1, result, inlineIns); + executeInstructions(staticRegs, body, abc, code, localData, i, code.code.size() - 1, result, inlineIns); } return false; @@ -248,7 +248,7 @@ public class AVM2DeobfuscatorSimple implements SWFDecompilerListener { } } - private void executeInstructions(Map staticRegs, int classIndex, boolean isStatic, MethodBody body, int scriptIndex, ABC abc, AVM2Code code, AVM2LocalData localData, int idx, int endIdx, ExecutionResult result, List inlineIns) throws InterruptedException { + private void executeInstructions(Map staticRegs, MethodBody body, ABC abc, AVM2Code code, AVM2LocalData localData, int idx, int endIdx, ExecutionResult result, List inlineIns) throws InterruptedException { List output = new ArrayList<>(); FixItemCounterTranslateStack stack = new FixItemCounterTranslateStack("");