diff --git a/build/distributions/cobol-check-0.2.10.zip b/build/distributions/cobol-check-0.2.10.zip index 4778fc24..b0e8c4b2 100644 Binary files a/build/distributions/cobol-check-0.2.10.zip and b/build/distributions/cobol-check-0.2.10.zip differ diff --git a/src/main/java/org/openmainframeproject/cobolcheck/features/interpreter/InterpreterController.java b/src/main/java/org/openmainframeproject/cobolcheck/features/interpreter/InterpreterController.java index 79803389..c331f1f0 100644 --- a/src/main/java/org/openmainframeproject/cobolcheck/features/interpreter/InterpreterController.java +++ b/src/main/java/org/openmainframeproject/cobolcheck/features/interpreter/InterpreterController.java @@ -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"); } diff --git a/vs-code-extension/Cobol-check/bin/cobol-check-0.2.10.jar b/vs-code-extension/Cobol-check/bin/cobol-check-0.2.10.jar index e483fa36..4d4c1c83 100644 Binary files a/vs-code-extension/Cobol-check/bin/cobol-check-0.2.10.jar and b/vs-code-extension/Cobol-check/bin/cobol-check-0.2.10.jar differ