mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 08:54:50 +00:00
- Fixed §§push after continue - should be before (usually on obfuscated code)
This commit is contained in:
@@ -2544,6 +2544,9 @@ public class Graph {
|
||||
if (commands.get(commands.size() - 1) instanceof BreakItem) {
|
||||
clen--;
|
||||
}
|
||||
if (commands.get(commands.size() - 1) instanceof ContinueItem) {
|
||||
clen--;
|
||||
}
|
||||
}
|
||||
while (stack.size() > 0) {
|
||||
GraphTargetItem p = stack.pop();
|
||||
|
||||
Reference in New Issue
Block a user