unnecessary "if true" prints removed

This commit is contained in:
Jindra Petřík
2014-08-23 22:48:36 +02:00
parent 30258979e2
commit 671561fdfe
2 changed files with 0 additions and 2 deletions

View File

@@ -391,7 +391,6 @@ public class ActionDeobfuscator implements SWFDecompilerListener {
if (action instanceof ActionIf) {
ActionIf aif = (ActionIf) action;
if (EcmaScript.toBoolean(stack.pop().getResult())) {
System.out.println("if true");
long address = aif.getAddress() + aif.getTotalActionLength() + aif.getJumpOffset();
idx = actions.indexOf(actions.getByAddress(address));
if (idx == -1) {

View File

@@ -167,7 +167,6 @@ public class ActionDeobfuscatorSimple implements SWFDecompilerListener {
if (action instanceof ActionIf) {
ActionIf aif = (ActionIf) action;
if (EcmaScript.toBoolean(stack.pop().getResult())) {
System.out.println("if true");
long address = aif.getAddress() + aif.getTotalActionLength() + aif.getJumpOffset();
idx = actions.indexOf(actions.getByAddress(address));
if (idx == -1) {