Author: ggregory
Date: Wed Oct 29 14:29:45 2014
New Revision: 1635145

URL: http://svn.apache.org/r1635145
Log:
Checkstyle: line length.

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Modified: 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: 
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1635145&r1=1635144&r2=1635145&view=diff
==============================================================================
--- 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java 
(original)
+++ 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java 
Wed Oct 29 14:29:45 2014
@@ -207,14 +207,15 @@ public final class CSVFormat implements 
      * Settings are:
      * </p>
      * <ul>
-     *   <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
-     *   <li>{@link #withQuote(char) withQuote('"')}</li>
-     *   <li>{@link #withRecordSeparator(String) 
withRecordSeparator("\r\n")}</li>
-     *   <li>{@link #withIgnoreEmptyLines(boolean) 
withIgnoreEmptyLines(false)}</li>
-     *   <li>{@link #withAllowMissingColumnNames(boolean) 
withAllowMissingColumnNames(true)}</li>
+     * <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
+     * <li>{@link #withQuote(char) withQuote('"')}</li>
+     * <li>{@link #withRecordSeparator(String) 
withRecordSeparator("\r\n")}</li>
+     * <li>{@link #withIgnoreEmptyLines(boolean) 
withIgnoreEmptyLines(false)}</li>
+     * <li>{@link #withAllowMissingColumnNames(boolean) 
withAllowMissingColumnNames(true)}</li>
      * </ul>
      * <p>
-     * Note: this is currently like {@link #RFC4180} plus {@link 
#withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}.
+     * Note: this is currently like {@link #RFC4180} plus {@link 
#withAllowMissingColumnNames(boolean)
+     * withAllowMissingColumnNames(true)}.
      * </p>
      */
     public static final CSVFormat EXCEL = 
DEFAULT.withIgnoreEmptyLines(false).withAllowMissingColumnNames();


Reply via email to