mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 13:25:12 +00:00
removed some unnecessary parameters + small fixes
This commit is contained in:
@@ -2,9 +2,12 @@
|
||||
import com.jpexs.decompiler.flash.SWF;
|
||||
import com.jpexs.decompiler.flash.abc.ABC;
|
||||
import com.jpexs.decompiler.flash.abc.types.MethodBody;
|
||||
import com.jpexs.decompiler.flash.abc.types.traits.Trait;
|
||||
import com.jpexs.decompiler.flash.action.ActionList;
|
||||
import com.jpexs.decompiler.flash.helpers.SWFDecompilerListener;
|
||||
import com.jpexs.decompiler.flash.tags.base.ASMSource;
|
||||
import com.jpexs.decompiler.graph.GraphTargetItem;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
@@ -22,6 +25,11 @@ public class DeobfuscatorSample implements SWFDecompilerListener {
|
||||
System.out.println("actionListParsed");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionTreeCreated(List<GraphTargetItem> tree, SWF swf) {
|
||||
System.out.println("actionTreeCreated");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void swfParsed(SWF swf) {
|
||||
System.out.println("swfParsed");
|
||||
@@ -44,4 +52,9 @@ public class DeobfuscatorSample implements SWFDecompilerListener {
|
||||
public void methodBodyParsed(MethodBody body, SWF swf) {
|
||||
System.out.println("methodBodyParsed");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void avm2CodeRemoveTraps(String path, int classIndex, boolean isStatic, int scriptIndex, ABC abc, Trait trait, int methodInfo, MethodBody body) throws InterruptedException {
|
||||
System.out.println("avm2CodeRemoveTraps");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user