mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 04:11:13 +00:00
Issue #552 max recursion level bug fixed (parseNext variable)
This commit is contained in:
@@ -1364,7 +1364,7 @@ public class Graph {
|
||||
/**
|
||||
* AND / OR detection
|
||||
*/
|
||||
if (part.nextParts.size() == 2) {
|
||||
if (parseNext && part.nextParts.size() == 2) {
|
||||
if ((stack.size() >= 2) && (stack.get(stack.size() - 1) instanceof NotItem) && (((NotItem) (stack.get(stack.size() - 1))).getOriginal().getNotCoerced() == stack.get(stack.size() - 2).getNotCoerced())) {
|
||||
GraphPart sp0 = getNextNoJump(part.nextParts.get(0), localData);
|
||||
GraphPart sp1 = getNextNoJump(part.nextParts.get(1), localData);
|
||||
|
||||
Reference in New Issue
Block a user