mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-15 19:18:06 +00:00
Deobfuscation fix again:)
This commit is contained in:
@@ -112,13 +112,13 @@ public class FastActionList implements Collection<ActionItem> {
|
||||
item.removeContainerLastActions();
|
||||
|
||||
if (item.jumpsHere != null) {
|
||||
for (ActionItem item1 : item.jumpsHere) {
|
||||
for (ActionItem item1 : new ArrayList<>(item.jumpsHere)) {
|
||||
item1.setJumpTarget(item.next);
|
||||
}
|
||||
}
|
||||
|
||||
if (item.lastActionOf != null) {
|
||||
for (ActionItem item1 : item.lastActionOf) {
|
||||
for (ActionItem item1 : new ArrayList<>(item.lastActionOf)) {
|
||||
item1.replaceContainerLastAction(item, item.prev);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user