From 3ddfb40c4f6a3a7e5f73858c6cafac3e64b1f3ad Mon Sep 17 00:00:00 2001
From: Gary Gregory
Date: Sat, 20 Oct 2018 09:41:38 -0600
Subject: [PATCH] [CSV-208] Fix escape character for POSTGRESQL_TEXT and
POSTGRESQL_CSV formats. Fix Javadoc for
org.apache.commons.csv.CSVFormat.POSTGRESQL_CSV.
---
.../java/org/apache/commons/csv/CSVFormat.java | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java
index a0a83cc3..58ba1bdb 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -438,13 +438,13 @@ public final class CSVFormat implements Serializable {
* Settings are:
*
*
- * - withDelimiter(',')
- * - withQuote('"')
- * - withRecordSeparator('\n')
- * - withIgnoreEmptyLines(false)
- * - withEscape('\\')
- * - withNullString("")
- * - withQuoteMode(QuoteMode.ALL_NON_NULL)
+ * - {@code withDelimiter(',')}
+ * - {@code withEscape('"')}
+ * - {@code withIgnoreEmptyLines(false)}
+ * - {@code withQuote('"')}
+ * - {@code withRecordSeparator('\n')}
+ * - {@code withNullString("")}
+ * - {@code withQuoteMode(QuoteMode.ALL_NON_NULL)}
*
*
* @see Predefined#MySQL