Fix refactor fail in modarith from earlier

This commit is contained in:
Adam
2016-03-27 11:23:24 -04:00
parent e3a6310572
commit 37193b7a79
2 changed files with 0 additions and 12 deletions

View File

@@ -151,9 +151,6 @@ public class ModArith implements Deobfuscator
continue;
}
if (other.getMyField() != null)
continue;
if (!(pc.getConstant().getObject() instanceof Integer) && !(pc.getConstant().getObject() instanceof Long))
continue;
@@ -172,15 +169,6 @@ public class ModArith implements Deobfuscator
continue;
}
InstructionContext popped = ctx.getPushes().get(0).getPopped().get(0);
if (popped.getInstruction() instanceof SetFieldInstruction)
{
SetFieldInstruction sfi = (SetFieldInstruction) popped.getInstruction();
if (sfi.getMyField() != null)
continue;
}
this.obfuscatedFields.add(other.getMyField());
}
}