You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/09/10 13:33:46 UTC

svn commit: r1623971 - in /commons/proper/csv/trunk/src: changes/changes.xml main/java/org/apache/commons/csv/CSVFormat.java

Author: ggregory
Date: Wed Sep 10 11:33:46 2014
New Revision: 1623971

URL: http://svn.apache.org/r1623971
Log:
[CSV-132] Incorrect Javadoc referencing org.apache.commons.csv.CSVFormat withQuote()

Modified:
    commons/proper/csv/trunk/src/changes/changes.xml
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Modified: commons/proper/csv/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/changes/changes.xml?rev=1623971&r1=1623970&r2=1623971&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/changes/changes.xml (original)
+++ commons/proper/csv/trunk/src/changes/changes.xml Wed Sep 10 11:33:46 2014
@@ -41,6 +41,7 @@
     <release version="1.1" date="2014-mm-dd" description="Feature and bug fix release">
       <action issue="CSV-128" type="fix" dev="ggregory">CSVFormat.EXCEL should ignore empty header names</action>
       <action issue="CSV-129" type="add" dev="ggregory">Add CSVFormat#with 0-arg methods matching boolean arg methods</action>
+      <action issue="CSV-132" type="fix" dev="ggregory" due-to="Sascha Szott">Incorrect Javadoc referencing org.apache.commons.csv.CSVFormat withQuote()</action>
     </release>
     <release version="1.0" date="2014-08-14" description="First release">
       <action issue="CSV-125" type="fix" dev="britter">No longer works with Java 6</action>

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1623971&r1=1623970&r2=1623971&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java Wed Sep 10 11:33:46 2014
@@ -167,7 +167,7 @@ public final class CSVFormat implements 
      * </p>
      * <ul>
      *   <li>withDelimiter(',')</li>
-     *   <li>withQuoteChar('"')</li>
+     *   <li>withQuote('"')</li>
      *   <li>withRecordSeparator("\r\n")</li>
      *   <li>withIgnoreEmptyLines(true)</li>
      * </ul>
@@ -183,7 +183,7 @@ public final class CSVFormat implements 
      * </p>
      * <ul>
      *   <li>withDelimiter(',')</li>
-     *   <li>withQuoteChar('"')</li>
+     *   <li>withQuote('"')</li>
      *   <li>withRecordSeparator("\r\n")</li>
      *   <li>withIgnoreEmptyLines(false)</li>
      * </ul>
@@ -207,7 +207,7 @@ public final class CSVFormat implements 
      * </p>
      * <ul>
      *   <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
-     *   <li>{@link #withQuoteChar(String) withQuoteChar('"')}</li>
+     *   <li>{@link #withQuote(String) withQuote('"')}</li>
      *   <li>{@link #withRecordSeparator(String) withRecordSeparator("\r\n")}</li>
      *   <li>{@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}</li>
      *   <li>{@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}</li>
@@ -226,7 +226,7 @@ public final class CSVFormat implements 
      * </p>
      * <ul>
      *   <li>withDelimiter('\t')</li>
-     *   <li>withQuoteChar('"')</li>
+     *   <li>withQuote('"')</li>
      *   <li>withRecordSeparator("\r\n")</li>
      *   <li>withIgnoreSurroundingSpaces(true)</li>
      * </ul>
@@ -249,7 +249,7 @@ public final class CSVFormat implements 
      * </p>
      * <ul>
      *   <li>withDelimiter('\t')</li>
-     *   <li>withQuoteChar(null)</li>
+     *   <li>withQuote(null)</li>
      *   <li>withRecordSeparator('\n')</li>
      *   <li>withIgnoreEmptyLines(false)</li>
      *   <li>withEscape('\\')</li>