mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-28 14:15:33 +00:00
poptreeitem fix
This commit is contained in:
@@ -43,7 +43,9 @@ public class WhileItem extends LoopItem implements Block {
|
||||
ret += "loop" + loop.id + ":\r\n";
|
||||
ret += hilight("while(") + (expression == null ? "null" : expression.toString(localData)) + hilight(")") + "\r\n{\r\n";
|
||||
for (GraphTargetItem ti : commands) {
|
||||
ret += ti.toStringSemicoloned(localData) + "\r\n";
|
||||
if (!ti.isEmpty()) {
|
||||
ret += ti.toStringSemicoloned(localData) + "\r\n";
|
||||
}
|
||||
}
|
||||
ret += hilight("}") + "\r\n";
|
||||
ret += ":loop" + loop.id;
|
||||
|
||||
Reference in New Issue
Block a user