File tree Expand file tree Collapse file tree 2 files changed +11
-13
lines changed
libcobj/app/src/main/java/jp/osscons/opensourcecobol/libcobj/call Expand file tree Collapse file tree 2 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ protected CobolCallStackList() {
1515 this .name = null ;
1616 }
1717
18- /**
19- * コンストラクタ
20- *
18+ /**
19+ * コンストラクタ
20+ *
2121 * @param name プログラム名
2222 */
2323 protected CobolCallStackList (String name ) {
@@ -29,7 +29,7 @@ protected CobolCallStackList(String name) {
2929
3030 /**
3131 * 親ノードを取得する
32- *
32+ *
3333 * @return parent 親ノード
3434 */
3535 protected CobolCallStackList getParent () {
@@ -38,7 +38,7 @@ protected CobolCallStackList getParent() {
3838
3939 /**
4040 * 親ノードを設定する
41- *
41+ *
4242 * @param parent 親ノード
4343 */
4444 protected void setParent (CobolCallStackList parent ) {
@@ -47,7 +47,7 @@ protected void setParent(CobolCallStackList parent) {
4747
4848 /**
4949 * 子ノードを取得する
50- *
50+ *
5151 * @return children 子ノード
5252 */
5353 protected CobolCallStackList getChildren () {
@@ -56,7 +56,7 @@ protected CobolCallStackList getChildren() {
5656
5757 /**
5858 * 子ノードを設定する
59- *
59+ *
6060 * @param children 子ノード
6161 */
6262 protected void setChildren (CobolCallStackList children ) {
@@ -65,7 +65,7 @@ protected void setChildren(CobolCallStackList children) {
6565
6666 /**
6767 * 兄弟ノードを取得する
68- *
68+ *
6969 * @return sister 兄弟ノード
7070 */
7171 protected CobolCallStackList getSister () {
@@ -74,7 +74,7 @@ protected CobolCallStackList getSister() {
7474
7575 /**
7676 * 兄弟ノードを設定する
77- *
77+ *
7878 * @param sister 兄弟ノード
7979 */
8080 protected void setSister (CobolCallStackList sister ) {
@@ -83,7 +83,7 @@ protected void setSister(CobolCallStackList sister) {
8383
8484 /**
8585 * プログラム名を取得する
86- *
86+ *
8787 * @return name プログラム名
8888 */
8989 protected String getName () {
Original file line number Diff line number Diff line change @@ -555,9 +555,7 @@ private static void cancelCallStackList(CobolCallStackList p) {
555555 try {
556556 CobolResolve .cobCancel (programName );
557557 } catch (CobolStopRunException e ) {
558- throw new CobolRuntimeException (
559- CobolRuntimeException .COBOL_FATAL_ERROR ,
560- "Failed to cancel program: " + programName );
558+ return ;
561559 }
562560 }
563561
You can’t perform that action at this time.
0 commit comments