mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 22:50:46 +00:00
execute actions without translating them...., using this new execute method in deobfuscator
This commit is contained in:
@@ -39,7 +39,11 @@ public class NotItem extends UnaryOpItem implements LogicalOpItem, Inverted {
|
||||
|
||||
@Override
|
||||
public Object getResult() {
|
||||
boolean ret = EcmaScript.toBoolean(value.getResult());
|
||||
return getResult(value.getResult());
|
||||
}
|
||||
|
||||
public static Boolean getResult(Object obj) {
|
||||
boolean ret = EcmaScript.toBoolean(obj);
|
||||
if (ret) {
|
||||
return Boolean.FALSE;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user