Fix Javadoc to current behaviour

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1479712 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-05-06 23:02:34 +00:00
parent 4f61bd1aee
commit e697318e68
2 changed files with 6 additions and 1 deletions

View File

@ -145,7 +145,7 @@ final class ExtendedBufferedReader extends BufferedReader {
/**
* Returns the number of lines read
*
* @return the current-line-number
* @return the number of EOLs seen so far
*/
long getLineNumber() {
return lineCounter;

View File

@ -69,6 +69,11 @@ abstract class Lexer {
return c == null ? DISABLED : c.charValue();
}
/**
* Returns the number of lines read
*
* @return the number of EOLs seen so far
*/
long getLineNumber() {
return in.getLineNumber();
}