From 87b75e02a329cf752c98023cdb2ade3ebd0259fe Mon Sep 17 00:00:00 2001 From: "Bruno P. Kinoshita" Date: Sat, 26 Aug 2017 19:25:33 +1200 Subject: [PATCH] Fix checkstyle errors by replacing tabs by spaces --- .../org/apache/commons/csv/CSVFormat.java | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index bae5a970..410c8fb5 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -275,8 +275,8 @@ public final class CSVFormat implements Serializable { */ // @formatter:off public static final CSVFormat EXCEL = DEFAULT - .withIgnoreEmptyLines(false) - .withAllowMissingColumnNames(); + .withIgnoreEmptyLines(false) + .withAllowMissingColumnNames(); // @formatter:on /** @@ -305,8 +305,8 @@ public final class CSVFormat implements Serializable { */ // @formatter:off public static final CSVFormat INFORMIX_UNLOAD = DEFAULT - .withDelimiter(PIPE) - .withEscape(BACKSLASH) + .withDelimiter(PIPE) + .withEscape(BACKSLASH) .withQuote(DOUBLE_QUOTE_CHAR) .withRecordSeparator(LF); // @formatter:on @@ -336,8 +336,8 @@ public final class CSVFormat implements Serializable { */ // @formatter:off public static final CSVFormat INFORMIX_UNLOAD_CSV = DEFAULT - .withDelimiter(COMMA) - .withQuote(DOUBLE_QUOTE_CHAR) + .withDelimiter(COMMA) + .withQuote(DOUBLE_QUOTE_CHAR) .withRecordSeparator(LF); // @formatter:on @@ -368,13 +368,13 @@ public final class CSVFormat implements Serializable { */ // @formatter:off public static final CSVFormat MYSQL = DEFAULT - .withDelimiter(TAB) - .withEscape(BACKSLASH) - .withIgnoreEmptyLines(false) + .withDelimiter(TAB) + .withEscape(BACKSLASH) + .withIgnoreEmptyLines(false) .withQuote(null) .withRecordSeparator(LF) .withNullString("\\N") - .withQuoteMode(QuoteMode.ALL_NON_NULL); + .withQuoteMode(QuoteMode.ALL_NON_NULL); // @formatter:off /** @@ -405,13 +405,13 @@ public final class CSVFormat implements Serializable { */ // @formatter:off public static final CSVFormat POSTGRESQL_CSV = DEFAULT - .withDelimiter(COMMA) - .withEscape(DOUBLE_QUOTE_CHAR) - .withIgnoreEmptyLines(false) + .withDelimiter(COMMA) + .withEscape(DOUBLE_QUOTE_CHAR) + .withIgnoreEmptyLines(false) .withQuote(DOUBLE_QUOTE_CHAR) .withRecordSeparator(LF) .withNullString(EMPTY) - .withQuoteMode(QuoteMode.ALL_NON_NULL); + .withQuoteMode(QuoteMode.ALL_NON_NULL); // @formatter:off /** @@ -442,13 +442,13 @@ public final class CSVFormat implements Serializable { */ // @formatter:off public static final CSVFormat POSTGRESQL_TEXT = DEFAULT - .withDelimiter(TAB) - .withEscape(DOUBLE_QUOTE_CHAR) - .withIgnoreEmptyLines(false) + .withDelimiter(TAB) + .withEscape(DOUBLE_QUOTE_CHAR) + .withIgnoreEmptyLines(false) .withQuote(DOUBLE_QUOTE_CHAR) .withRecordSeparator(LF) .withNullString("\\N") - .withQuoteMode(QuoteMode.ALL_NON_NULL); + .withQuoteMode(QuoteMode.ALL_NON_NULL); // @formatter:off /** @@ -487,8 +487,8 @@ public final class CSVFormat implements Serializable { */ // @formatter:off public static final CSVFormat TDF = DEFAULT - .withDelimiter(TAB) - .withIgnoreSurroundingSpaces(); + .withDelimiter(TAB) + .withIgnoreSurroundingSpaces(); // @formatter:on /**