mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 20:01:55 +00:00
try in if fix
This commit is contained in:
@@ -1067,7 +1067,7 @@ public class AVM2Graph extends Graph {
|
||||
}
|
||||
}
|
||||
|
||||
if (afterPart == null && localData.pushDefaultPart.containsKey(finallyIndex)) {
|
||||
if (localData.pushDefaultPart.containsKey(finallyIndex)) {
|
||||
exAfterPart = localData.pushDefaultPart.get(finallyIndex);
|
||||
tryStopPart.add(exAfterPart);
|
||||
}
|
||||
|
||||
@@ -238,15 +238,14 @@ public class Graph {
|
||||
|
||||
GraphPartQueue newParts = new GraphPartQueue();
|
||||
List<GraphPart> nextParts = new ArrayList<>(getNextParts(localData, part));
|
||||
/*
|
||||
!!THROW
|
||||
|
||||
for (ThrowState ts : throwStates) {
|
||||
if (ts.state != 1) {
|
||||
if (ts.throwingParts.contains(part)) {
|
||||
newParts.add(ts.targetPart);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
loopnext:
|
||||
for (GraphPart nextRaw : nextParts) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user