We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f6d703 commit 604ae64Copy full SHA for 604ae64
java/src/processing/mode/java/preproc/PdePreprocessor.java
@@ -811,7 +811,7 @@ private static void checkForUnterminatedMultilineComment(final String program)
811
boolean terminated = false;
812
while (i < length - 1) {
813
if ((program.charAt(i) == '*') && (program.charAt(i + 1) == '/')) {
814
- i += 2;
+ i++; // advance to the ending '/'
815
terminated = true;
816
break;
817
} else {
0 commit comments