Skip to content

Commit 87b75e0

Browse files
committed
Fix checkstyle errors by replacing tabs by spaces
1 parent 259812e commit 87b75e0

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ public CSVFormat getFormat() {
275275
*/
276276
// @formatter:off
277277
public static final CSVFormat EXCEL = DEFAULT
278-
.withIgnoreEmptyLines(false)
279-
.withAllowMissingColumnNames();
278+
.withIgnoreEmptyLines(false)
279+
.withAllowMissingColumnNames();
280280
// @formatter:on
281281

282282
/**
@@ -305,8 +305,8 @@ public CSVFormat getFormat() {
305305
*/
306306
// @formatter:off
307307
public static final CSVFormat INFORMIX_UNLOAD = DEFAULT
308-
.withDelimiter(PIPE)
309-
.withEscape(BACKSLASH)
308+
.withDelimiter(PIPE)
309+
.withEscape(BACKSLASH)
310310
.withQuote(DOUBLE_QUOTE_CHAR)
311311
.withRecordSeparator(LF);
312312
// @formatter:on
@@ -336,8 +336,8 @@ public CSVFormat getFormat() {
336336
*/
337337
// @formatter:off
338338
public static final CSVFormat INFORMIX_UNLOAD_CSV = DEFAULT
339-
.withDelimiter(COMMA)
340-
.withQuote(DOUBLE_QUOTE_CHAR)
339+
.withDelimiter(COMMA)
340+
.withQuote(DOUBLE_QUOTE_CHAR)
341341
.withRecordSeparator(LF);
342342
// @formatter:on
343343

@@ -368,13 +368,13 @@ public CSVFormat getFormat() {
368368
*/
369369
// @formatter:off
370370
public static final CSVFormat MYSQL = DEFAULT
371-
.withDelimiter(TAB)
372-
.withEscape(BACKSLASH)
373-
.withIgnoreEmptyLines(false)
371+
.withDelimiter(TAB)
372+
.withEscape(BACKSLASH)
373+
.withIgnoreEmptyLines(false)
374374
.withQuote(null)
375375
.withRecordSeparator(LF)
376376
.withNullString("\\N")
377-
.withQuoteMode(QuoteMode.ALL_NON_NULL);
377+
.withQuoteMode(QuoteMode.ALL_NON_NULL);
378378
// @formatter:off
379379

380380
/**
@@ -405,13 +405,13 @@ public CSVFormat getFormat() {
405405
*/
406406
// @formatter:off
407407
public static final CSVFormat POSTGRESQL_CSV = DEFAULT
408-
.withDelimiter(COMMA)
409-
.withEscape(DOUBLE_QUOTE_CHAR)
410-
.withIgnoreEmptyLines(false)
408+
.withDelimiter(COMMA)
409+
.withEscape(DOUBLE_QUOTE_CHAR)
410+
.withIgnoreEmptyLines(false)
411411
.withQuote(DOUBLE_QUOTE_CHAR)
412412
.withRecordSeparator(LF)
413413
.withNullString(EMPTY)
414-
.withQuoteMode(QuoteMode.ALL_NON_NULL);
414+
.withQuoteMode(QuoteMode.ALL_NON_NULL);
415415
// @formatter:off
416416

417417
/**
@@ -442,13 +442,13 @@ public CSVFormat getFormat() {
442442
*/
443443
// @formatter:off
444444
public static final CSVFormat POSTGRESQL_TEXT = DEFAULT
445-
.withDelimiter(TAB)
446-
.withEscape(DOUBLE_QUOTE_CHAR)
447-
.withIgnoreEmptyLines(false)
445+
.withDelimiter(TAB)
446+
.withEscape(DOUBLE_QUOTE_CHAR)
447+
.withIgnoreEmptyLines(false)
448448
.withQuote(DOUBLE_QUOTE_CHAR)
449449
.withRecordSeparator(LF)
450450
.withNullString("\\N")
451-
.withQuoteMode(QuoteMode.ALL_NON_NULL);
451+
.withQuoteMode(QuoteMode.ALL_NON_NULL);
452452
// @formatter:off
453453

454454
/**
@@ -487,8 +487,8 @@ public CSVFormat getFormat() {
487487
*/
488488
// @formatter:off
489489
public static final CSVFormat TDF = DEFAULT
490-
.withDelimiter(TAB)
491-
.withIgnoreSurroundingSpaces();
490+
.withDelimiter(TAB)
491+
.withIgnoreSurroundingSpaces();
492492
// @formatter:on
493493

494494
/**

0 commit comments

Comments
 (0)