You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2014/05/04 19:01:07 UTC

svn commit: r1592382 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

Author: britter
Date: Sun May  4 17:01:07 2014
New Revision: 1592382

URL: http://svn.apache.org/r1592382
Log:
Make checkstyle happy (line is longer than 120 characters)

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java?rev=1592382&r1=1592381&r2=1592382&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java Sun May  4 17:01:07 2014
@@ -269,7 +269,8 @@ public final class CSVParser implements 
      * Returns the current line number in the input stream.
      *
      * <p>
-     * <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to the record number.
+     * <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to
+     * the record number.
      * </p>
      *
      * @return current line number
@@ -293,7 +294,8 @@ public final class CSVParser implements 
      * Returns the current record number in the input stream.
      *
      * <p>
-     * <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to the line number.
+     * <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to
+     * the line number.
      * </p>
      *
      * @return current line number
@@ -370,7 +372,8 @@ public final class CSVParser implements 
             if (header != null) {
                 for (int i = 0; i < header.length; i++) {
                     if (hdrMap.containsKey(header[i])) {
-                        throw new IllegalStateException("The header contains duplicate names: " + Arrays.toString(header));
+                        throw new IllegalStateException("The header contains duplicate names: "
+                                + Arrays.toString(header));
                     }
                     hdrMap.put(header[i], Integer.valueOf(i));
                 }