Skip to content

Commit

Permalink
Merge pull request #349 from openmainframeproject/Developer
Browse files Browse the repository at this point in the history
Bugfix for z/OS
  • Loading branch information
oakmount1966 authored Jun 11, 2024
2 parents 890de4c + 65237f7 commit 3f6611e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file modified build/distributions/cobol-check-0.2.10.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public boolean shouldCurrentStatementBeStubbed() {
for (CobolLine line : reader.getCurrentStatement()) {
if (Interpreter.shouldLineBeStubbed(line, reader.getState())) {
if (reader.getState().isFlagSetFor(Constants.PROCEDURE_DIVISION)){
if (!insideSectionOrParagraphMockBody && !Interpreter.endsInPeriod(reader.getCurrentLine()))
if (!insideSectionOrParagraphMockBody && Interpreter.endsInPeriod(reader.getCurrentLine()))
reader.putNextLine(" .");
reader.putNextLine(" CONTINUE");
}
Expand Down
Binary file modified vs-code-extension/Cobol-check/bin/cobol-check-0.2.10.jar
Binary file not shown.

0 comments on commit 3f6611e

Please sign in to comment.