Skip to content

Commit ac8e206

Browse files
committed
fix the format
1 parent 91fbce4 commit ac8e206

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

cobj/typeck.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3161,7 +3161,9 @@ void cb_emit_cancel(cb_tree prog) {
31613161
cb_emit(cb_build_funcall_1("CobolResolve.fieldCancel", prog));
31623162
}
31633163

3164-
void cb_emit_cancel_all() { cb_emit(cb_build_funcall_0("CobolResolve.cancelAll")); }
3164+
void cb_emit_cancel_all() {
3165+
cb_emit(cb_build_funcall_0("CobolResolve.cancelAll"));
3166+
}
31653167

31663168
/*
31673169
* CLOSE statement

libcobj/app/src/main/java/jp/osscons/opensourcecobol/libcobj/call/CobolResolve.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -485,10 +485,10 @@ public static void cancel(String name) {
485485
* callTableに保存されているすべてのCallRunnableのインスタンスのcancelメソッドを呼び出す
486486
*/
487487
public static void cancelAll() {
488-
for (CobolRunnable runnable : callTable.values()) {
489-
if (runnable.isActive() == false) {
490-
runnable.cancel();
491-
}
488+
for (CobolRunnable runnable : callTable.values()) {
489+
if (runnable.isActive() == false) {
490+
runnable.cancel();
491+
}
492492
}
493493
}
494494

0 commit comments

Comments
 (0)