Skip to content

Commit 7d51af9

Browse files
committed
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
1 parent 2fdf2c8 commit 7d51af9

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ public void close() throws IOException {
269269
* Returns the current line number in the input stream.
270270
*
271271
* <p>
272-
* <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to the record number.
272+
* <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to
273+
* the record number.
273274
* </p>
274275
*
275276
* @return current line number
@@ -293,7 +294,8 @@ public Map<String, Integer> getHeaderMap() {
293294
* Returns the current record number in the input stream.
294295
*
295296
* <p>
296-
* <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to the line number.
297+
* <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to
298+
* the line number.
297299
* </p>
298300
*
299301
* @return current line number
@@ -370,7 +372,8 @@ private Map<String, Integer> initializeHeader() throws IOException {
370372
if (header != null) {
371373
for (int i = 0; i < header.length; i++) {
372374
if (hdrMap.containsKey(header[i])) {
373-
throw new IllegalStateException("The header contains duplicate names: " + Arrays.toString(header));
375+
throw new IllegalStateException("The header contains duplicate names: "
376+
+ Arrays.toString(header));
374377
}
375378
hdrMap.put(header[i], Integer.valueOf(i));
376379
}

0 commit comments

Comments
 (0)