File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
libcobj/app/src/main/java/jp/osscons/opensourcecobol/libcobj/call Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments