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.
2 parents cb1fcce + 604ae64 commit ff2c472Copy full SHA for ff2c472
1 file changed
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