Skip to content

Commit 012146e

Browse files
committed
Make checkstyle happy: Line was longer than 120 chars
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512626 13f79535-47bb-0310-9956-ffa450edef68
1 parent e0b79fe commit 012146e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,10 @@ long getCurrentLineNumber() {
307307
* On return, the next character is available by calling {@link ExtendedBufferedReader#getLastChar()}
308308
* on the input stream.
309309
*
310-
* @return the unescaped character (as an int) or {@link Constants#END_OF_STREAM} if char following the escape is invalid.
310+
* @return the unescaped character (as an int) or {@link Constants#END_OF_STREAM} if char following the escape is
311+
* invalid.
311312
* @throws IOException if there is a problem reading the stream or the end of stream is detected:
312-
* the escape character is not allowed at end of strem
313+
* the escape character is not allowed at end of strem
313314
*/
314315
int readEscape() throws IOException {
315316
// the escape char has just been read (normally a backslash)

0 commit comments

Comments
 (0)