Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 928B01077C for ; Sat, 10 Aug 2013 11:09:21 +0000 (UTC) Received: (qmail 45497 invoked by uid 500); 10 Aug 2013 11:09:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 45440 invoked by uid 500); 10 Aug 2013 11:09:19 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 45433 invoked by uid 99); 10 Aug 2013 11:09:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Aug 2013 11:09:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 Aug 2013 11:09:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CBB76238888A; Sat, 10 Aug 2013 11:08:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1512626 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java Date: Sat, 10 Aug 2013 11:08:57 -0000 To: commits@commons.apache.org From: britter@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130810110857.CBB76238888A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: britter Date: Sat Aug 10 11:08:57 2013 New Revision: 1512626 URL: http://svn.apache.org/r1512626 Log: Make checkstyle happy: Line was longer than 120 chars Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java?rev=1512626&r1=1512625&r2=1512626&view=diff ============================================================================== --- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java (original) +++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Lexer.java Sat Aug 10 11:08:57 2013 @@ -307,9 +307,10 @@ final class Lexer { * On return, the next character is available by calling {@link ExtendedBufferedReader#getLastChar()} * on the input stream. * - * @return the unescaped character (as an int) or {@link Constants#END_OF_STREAM} if char following the escape is invalid. + * @return the unescaped character (as an int) or {@link Constants#END_OF_STREAM} if char following the escape is + * invalid. * @throws IOException if there is a problem reading the stream or the end of stream is detected: - * the escape character is not allowed at end of strem + * the escape character is not allowed at end of strem */ int readEscape() throws IOException { // the escape char has just been read (normally a backslash)