Repository: commons-csv
Updated Branches:
  refs/heads/master 13c539a50 -> 3ddfb40c4


[CSV-208] Fix escape character for POSTGRESQL_TEXT and POSTGRESQL_CSV
formats. Fix Javadoc for
org.apache.commons.csv.CSVFormat.POSTGRESQL_CSV.

Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/3ddfb40c
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/3ddfb40c
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/3ddfb40c

Branch: refs/heads/master
Commit: 3ddfb40c4f6a3a7e5f73858c6cafac3e64b1f3ad
Parents: 13c539a
Author: Gary Gregory <garydgreg...@gmail.com>
Authored: Sat Oct 20 09:41:38 2018 -0600
Committer: Gary Gregory <garydgreg...@gmail.com>
Committed: Sat Oct 20 09:41:38 2018 -0600

----------------------------------------------------------------------
 src/main/java/org/apache/commons/csv/CSVFormat.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/3ddfb40c/src/main/java/org/apache/commons/csv/CSVFormat.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java 
b/src/main/java/org/apache/commons/csv/CSVFormat.java
index a0a83cc..58ba1bd 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:
      * </p>
      * <ul>
-     * <li>withDelimiter(',')</li>
-     * <li>withQuote('"')</li>
-     * <li>withRecordSeparator('\n')</li>
-     * <li>withIgnoreEmptyLines(false)</li>
-     * <li>withEscape('\\')</li>
-     * <li>withNullString("")</li>
-     * <li>withQuoteMode(QuoteMode.ALL_NON_NULL)</li>
+     * <li>{@code withDelimiter(',')}</li>
+     * <li>{@code withEscape('"')}</li>
+     * <li>{@code withIgnoreEmptyLines(false)}</li>
+     * <li>{@code withQuote('"')}</li>
+     * <li>{@code withRecordSeparator('\n')}</li>
+     * <li>{@code withNullString("")}</li>
+     * <li>{@code withQuoteMode(QuoteMode.ALL_NON_NULL)}</li>
      * </ul>
      *
      * @see Predefined#MySQL

Reply via email to