[CSV-132] Incorrect Javadoc referencing org.apache.commons.csv.CSVFormat withQuote()

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1623971 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-09-10 11:33:46 +00:00
parent cebbcc8b3c
commit 807ddd164b
2 changed files with 6 additions and 5 deletions

View File

@ -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>

View File

@ -167,7 +167,7 @@ public final class CSVFormat implements Serializable {
* </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 Serializable {
* </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 Serializable {
* </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 Serializable {
* </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 Serializable {
* </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>