File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments