Skip to content

Commit 0f8cc22

Browse files
committed
In-line comment.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397915 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8c3aaee commit 0f8cc22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/Lexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ boolean isWhitespace(final int c) {
118118
boolean readEndOfLine(int c) throws IOException {
119119
// check if we have \r\n...
120120
if (c == CR && in.lookAhead() == LF) {
121-
// note: does not change c outside of this method !!
121+
// note: does not change c outside of this method!
122122
c = in.read();
123123
}
124124
return c == LF || c == CR;

0 commit comments

Comments
 (0)