mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 13:14:53 +00:00
try..catch break detection fix
This commit is contained in:
@@ -1328,9 +1328,9 @@ public class Graph {
|
||||
}
|
||||
|
||||
List<Loop> loops2 = new ArrayList<>(loops);
|
||||
/*for (Loop l : loops2) {
|
||||
for (Loop l : loops2) {
|
||||
l.breakCandidatesLocked++;
|
||||
}*/
|
||||
}
|
||||
for (ThrowState ts : throwStates) {
|
||||
if (ts.throwingParts.contains(part) && (currentThrowStates.contains(ts) || ts.state != 1)) {
|
||||
GraphPart t = ts.targetPart;
|
||||
@@ -1339,9 +1339,9 @@ public class Graph {
|
||||
}
|
||||
}
|
||||
}
|
||||
/*for (Loop l : loops2) {
|
||||
for (Loop l : loops2) {
|
||||
l.breakCandidatesLocked--;
|
||||
}*/
|
||||
}
|
||||
|
||||
if (isLoop && currentLoop != null) {
|
||||
GraphPart found;
|
||||
|
||||
Reference in New Issue
Block a user