We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 357fd5c commit 1ae82deCopy full SHA for 1ae82de
src/main/java/com/fishercoder/solutions/firstthousand/_722.java
@@ -25,7 +25,8 @@ public List<String> removeComments(String[] source) {
25
} else if (line.charAt(i + 1) == '/') {
26
//this is a single line comment, remove
27
if (!possiblyMultilineComment) {
28
- //if this is not part of a possibly multiline comment, then we can safely break out, see test case 4
+ //only at this time, we know this is not part of a possibly multiline comment,
29
+ //then we can safely break out, see test case 4
30
break;
31
}
32
} else if (!possiblyMultilineComment) {
0 commit comments