Skip to content

Commit 1ae82de

Browse files
committedJul 24, 2024·
update 722
1 parent 357fd5c commit 1ae82de

File tree

1 file changed

+2
-1
lines changed
  • src/main/java/com/fishercoder/solutions/firstthousand

1 file changed

+2
-1
lines changed
 

‎src/main/java/com/fishercoder/solutions/firstthousand/_722.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public List<String> removeComments(String[] source) {
2525
} else if (line.charAt(i + 1) == '/') {
2626
//this is a single line comment, remove
2727
if (!possiblyMultilineComment) {
28-
//if this is not part of a possibly multiline comment, then we can safely break out, see test case 4
28+
//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
2930
break;
3031
}
3132
} else if (!possiblyMultilineComment) {

0 commit comments

Comments
 (0)
Please sign in to comment.