diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index d190531d..019e7678 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -29,12 +29,13 @@ import java.io.IOException; import java.io.Reader; import java.io.Serializable; import java.io.StringWriter; +import java.util.Arrays; /** * The format specification of a CSV file. * * This class is immutable. - * + * * @version $Id$ */ public class CSVFormat implements Serializable { @@ -125,8 +126,8 @@ public class CSVFormat implements Serializable { /** * Creates a new CSV format builds. - * - * @param delimiter + * + * @param delimiter * the char used for value separation, must not be a line break character * @throws IllegalArgumentException if the delimiter is a line break character */ @@ -137,7 +138,7 @@ public class CSVFormat implements Serializable { public static CSVFormatBuilder newBuilder(final CSVFormat format) { return new CSVFormatBuilder(format); } - + /** * Standard comma separated format, as for {@link #RFC4180} but allowing blank lines. *