fix lt comparison
This commit is contained in:
@@ -201,7 +201,7 @@ public class ConstantParameter implements Deobfuscator
|
|||||||
case IFGT:
|
case IFGT:
|
||||||
return (int) value > 0;
|
return (int) value > 0;
|
||||||
case IFLE:
|
case IFLE:
|
||||||
return (int) value < 0;
|
return (int) value <= 0;
|
||||||
case IF_ICMPEQ:
|
case IF_ICMPEQ:
|
||||||
return value.equals(otherValue);
|
return value.equals(otherValue);
|
||||||
case IF_ICMPNE:
|
case IF_ICMPNE:
|
||||||
|
|||||||
Reference in New Issue
Block a user