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 {
|
boolean readEndOfLine(int c) throws IOException {
|
||||||
// check if we have \r\n...
|
// check if we have \r\n...
|
||||||
if (c == CR && in.lookAhead() == LF) {
|
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();
|
c = in.read();
|
||||||
}
|
}
|
||||||
return c == LF || c == CR;
|
return c == LF || c == CR;
|
||||||
|
|
Loading…
Reference in New Issue