unnecessarry try-catch removed from deobfuscarot methods

This commit is contained in:
honfika@gmail.com
2015-08-30 08:25:30 +02:00
parent edb9f124cb
commit f51640276a
7 changed files with 314 additions and 324 deletions

View File

@@ -1,3 +1,4 @@
import com.jpexs.decompiler.flash.SWF;
import com.jpexs.decompiler.flash.abc.ABC;
import com.jpexs.decompiler.flash.abc.types.MethodBody;
@@ -24,7 +25,7 @@ public class DeobfuscatorSample implements SWFDecompilerListener {
@Override
public void swfParsed(SWF swf) {
System.out.println("swfParsed");
Map<String, ASMSource> asms = swf.getASMs();
Map<String, ASMSource> asms = swf.getASMs(true);
for (ASMSource asm : asms.values()) {
try {
asm.getActions();