From b4e2f3049f26cd14811c7e856f0d99fe6f7595a1 Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Mon, 24 Nov 2025 10:49:02 +0900 Subject: [PATCH] chore: remove unnecessary spaces --- cobj/codegen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cobj/codegen.c b/cobj/codegen.c index ece49c9f..b4a8fab0 100644 --- a/cobj/codegen.c +++ b/cobj/codegen.c @@ -3211,7 +3211,8 @@ static void joutput_goto_1(cb_tree x) { joutput_prefix(); joutput("if(true) return Optional.of(contList["); joutput_label_variable(CB_LABEL(cb_ref(x))); - joutput_line("]);\n"); + joutput("]);"); + joutput_newline(); } static void joutput_goto(struct cb_goto *p) {