mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 12:00:45 +00:00
AS1/2 better deobfuscation
This commit is contained in:
@@ -214,7 +214,7 @@ public class ActionPush extends Action {
|
||||
for (Object o : values) {
|
||||
if (o instanceof ConstantIndex) {
|
||||
if ((constantPool == null) || (((ConstantIndex) o).index >= constantPool.size())) {
|
||||
o = "CONSTANT"+((ConstantIndex) o).index;
|
||||
o = "CONSTANT" + ((ConstantIndex) o).index;
|
||||
} else {
|
||||
o = constantPool.get(((ConstantIndex) o).index);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user