mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-06 18:18:51 +00:00
In-line comment.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397915 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c3aaee61a
commit
0f8cc2228c
@ -118,7 +118,7 @@ abstract class Lexer {
|
||||
boolean readEndOfLine(int c) throws IOException {
|
||||
// check if we have \r\n...
|
||||
if (c == CR && in.lookAhead() == LF) {
|
||||
// note: does not change c outside of this method !!
|
||||
// note: does not change c outside of this method!
|
||||
c = in.read();
|
||||
}
|
||||
return c == LF || c == CR;
|
||||
|
Loading…
x
Reference in New Issue
Block a user