@@ -150,7 +150,7 @@ public final class CSVFormat implements Serializable {
150150
151151 /**
152152 * Predefines formats.
153- *
153+ *
154154 * @since 1.2
155155 */
156156 public static enum Predefined {
@@ -200,7 +200,7 @@ private Predefined(final CSVFormat format) {
200200
201201 /**
202202 * Gets the format.
203- *
203+ *
204204 * @return the format.
205205 */
206206 public CSVFormat getFormat () {
@@ -220,7 +220,7 @@ public CSVFormat getFormat() {
220220 * <li>withRecordSeparator("\r\n")</li>
221221 * <li>withIgnoreEmptyLines(true)</li>
222222 * </ul>
223- *
223+ *
224224 * @see Predefined#Default
225225 */
226226 public static final CSVFormat DEFAULT = new CSVFormat (COMMA , DOUBLE_QUOTE_CHAR , null , null , null , false , true , CRLF ,
@@ -252,7 +252,7 @@ public CSVFormat getFormat() {
252252 * Note: this is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean)
253253 * withAllowMissingColumnNames(true)}.
254254 * </p>
255- *
255+ *
256256 * @see Predefined#Excel
257257 */
258258 public static final CSVFormat EXCEL = DEFAULT .withIgnoreEmptyLines (false ).withAllowMissingColumnNames ();
@@ -349,7 +349,7 @@ public CSVFormat getFormat() {
349349 * <li>withRecordSeparator("\r\n")</li>
350350 * <li>withIgnoreEmptyLines(false)</li>
351351 * </ul>
352- *
352+ *
353353 * @see Predefined#RFC4180
354354 */
355355 public static final CSVFormat RFC4180 = DEFAULT .withIgnoreEmptyLines (false );
@@ -368,7 +368,7 @@ public CSVFormat getFormat() {
368368 * <li>withRecordSeparator("\r\n")</li>
369369 * <li>withIgnoreSurroundingSpaces(true)</li>
370370 * </ul>
371- *
371+ *
372372 * @see Predefined#TDF
373373 */
374374 public static final CSVFormat TDF = DEFAULT .withDelimiter (TAB ).withIgnoreSurroundingSpaces ();
@@ -424,7 +424,7 @@ public static CSVFormat newFormat(final char delimiter) {
424424
425425 /**
426426 * Gets one of the predefined formats from {@link CSVFormat.Predefined}.
427- *
427+ *
428428 * @param format
429429 * name
430430 * @return one of the predefined formats
@@ -523,7 +523,7 @@ private CSVFormat(final char delimiter, final Character quoteChar, final QuoteMo
523523 this .skipHeaderRecord = skipHeaderRecord ;
524524 this .ignoreHeaderCase = ignoreHeaderCase ;
525525 this .trailingDelimiter = trailingDelimiter ;
526- this .trim = trim ;
526+ this .trim = trim ;
527527 validate ();
528528 }
529529
0 commit comments