Skip to content

Commit

Permalink
jit: fix silly b bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
HoshinoTented authored and ice1000 committed Dec 14, 2024
1 parent e42d413 commit c55452f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ public void appendLine(@NotNull String string) {

public void append(@NotNull String string) {
if (isLineBegin) fillIndent();
isLineBegin = false;
builder.append(string);
}

Expand Down Expand Up @@ -170,7 +171,7 @@ public void buildSwitch(
appendLine("}");
});

appendLine("public -> {");
appendLine("default -> {");
runInside(publicCase);
appendLine("}");
});
Expand Down

0 comments on commit c55452f

Please sign in to comment.