From 7d51af94049daa66b9ed893c9eb282bc92bd3fbf Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Sun, 4 May 2014 17:01:07 +0000 Subject: [PATCH] Make checkstyle happy (line is longer than 120 characters) git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1592382 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/CSVParser.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java b/src/main/java/org/apache/commons/csv/CSVParser.java index 315a11c3..06b4b6a0 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -269,7 +269,8 @@ public final class CSVParser implements Iterable, Closeable { * Returns the current line number in the input stream. * *

- * ATTENTION: If your CSV input has multi-line values, the returned number does not correspond to the record number. + * ATTENTION: If your CSV input has multi-line values, the returned number does not correspond to + * the record number. *

* * @return current line number @@ -293,7 +294,8 @@ public final class CSVParser implements Iterable, Closeable { * Returns the current record number in the input stream. * *

- * ATTENTION: If your CSV input has multi-line values, the returned number does not correspond to the line number. + * ATTENTION: If your CSV input has multi-line values, the returned number does not correspond to + * the line number. *

* * @return current line number @@ -370,7 +372,8 @@ public final class CSVParser implements Iterable, Closeable { 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)); }