mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 01:20:50 +00:00
format code
This commit is contained in:
@@ -47,7 +47,7 @@ public class UniversalLoopItem extends LoopItem implements Block {
|
||||
@Override
|
||||
protected GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) throws InterruptedException {
|
||||
if (writer instanceof NulWriter) {
|
||||
((NulWriter)writer).startLoop(loop.id, LoopWithType.LOOP_TYPE_LOOP);
|
||||
((NulWriter) writer).startLoop(loop.id, LoopWithType.LOOP_TYPE_LOOP);
|
||||
}
|
||||
if (labelUsed) {
|
||||
writer.append("loop" + loop.id + ":").newLine();
|
||||
@@ -63,7 +63,7 @@ public class UniversalLoopItem extends LoopItem implements Block {
|
||||
writer.unindent();
|
||||
writer.append("}").newLine();
|
||||
if (writer instanceof NulWriter) {
|
||||
LoopWithType loopOjb = ((NulWriter)writer).endLoop(loop.id);
|
||||
LoopWithType loopOjb = ((NulWriter) writer).endLoop(loop.id);
|
||||
labelUsed = loopOjb.used;
|
||||
}
|
||||
return writer;
|
||||
|
||||
Reference in New Issue
Block a user