mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 19:54:37 +00:00
AS3: Fixed do..while, while true, while &&
This commit is contained in:
@@ -67,7 +67,7 @@ public class GraphPart {
|
||||
}
|
||||
|
||||
private GraphPart getNextPartPath(GraphPart original, String path, List<GraphPart> visited) {
|
||||
if (visited.contains(this)) {
|
||||
if (visited.contains(this) && (this != original)) {
|
||||
return null;
|
||||
}
|
||||
visited.add(this);
|
||||
|
||||
Reference in New Issue
Block a user