From 759596a54a3939e5633c126ae57be179d578e2d2 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Sun, 7 Apr 2013 18:13:36 +0000 Subject: [PATCH] Correct JavaDoc indentation, remove trailing white spaces git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1465439 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/CSVFormat.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 1a3b0fbe..7286bcf3 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -45,7 +45,7 @@ import java.util.Arrays; *
Reader in = ...;
  *CSVFormat.EXCEL.toBuilder().withHeader("Col1", "Col2", "Col3").parse(in);
*

- * + * * @version $Id$ */ public class CSVFormat implements Serializable { @@ -490,7 +490,7 @@ public class CSVFormat implements Serializable { /** * Creates a builder based on this format. - * + * * @return a new builder */ public CSVFormatBuilder toBuilder() { @@ -600,8 +600,8 @@ public class CSVFormat implements Serializable { * @param in * the input stream * @return a CSVRecord stream - * @throws IOException - * If an I/O error occurs + * @throws IOException + * If an I/O error occurs */ public Iterable parse(final Reader in) throws IOException { return this.build().parse(in);