Skip to content

Commit 807ddd1

Browse files
committed
[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
1 parent cebbcc8 commit 807ddd1

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<release version="1.1" date="2014-mm-dd" description="Feature and bug fix release">
4242
<action issue="CSV-128" type="fix" dev="ggregory">CSVFormat.EXCEL should ignore empty header names</action>
4343
<action issue="CSV-129" type="add" dev="ggregory">Add CSVFormat#with 0-arg methods matching boolean arg methods</action>
44+
<action issue="CSV-132" type="fix" dev="ggregory" due-to="Sascha Szott">Incorrect Javadoc referencing org.apache.commons.csv.CSVFormat withQuote()</action>
4445
</release>
4546
<release version="1.0" date="2014-08-14" description="First release">
4647
<action issue="CSV-125" type="fix" dev="britter">No longer works with Java 6</action>

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public final class CSVFormat implements Serializable {
167167
* </p>
168168
* <ul>
169169
* <li>withDelimiter(',')</li>
170-
* <li>withQuoteChar('"')</li>
170+
* <li>withQuote('"')</li>
171171
* <li>withRecordSeparator("\r\n")</li>
172172
* <li>withIgnoreEmptyLines(true)</li>
173173
* </ul>
@@ -183,7 +183,7 @@ public final class CSVFormat implements Serializable {
183183
* </p>
184184
* <ul>
185185
* <li>withDelimiter(',')</li>
186-
* <li>withQuoteChar('"')</li>
186+
* <li>withQuote('"')</li>
187187
* <li>withRecordSeparator("\r\n")</li>
188188
* <li>withIgnoreEmptyLines(false)</li>
189189
* </ul>
@@ -207,7 +207,7 @@ public final class CSVFormat implements Serializable {
207207
* </p>
208208
* <ul>
209209
* <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
210-
* <li>{@link #withQuoteChar(String) withQuoteChar('"')}</li>
210+
* <li>{@link #withQuote(String) withQuote('"')}</li>
211211
* <li>{@link #withRecordSeparator(String) withRecordSeparator("\r\n")}</li>
212212
* <li>{@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}</li>
213213
* <li>{@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}</li>
@@ -226,7 +226,7 @@ public final class CSVFormat implements Serializable {
226226
* </p>
227227
* <ul>
228228
* <li>withDelimiter('\t')</li>
229-
* <li>withQuoteChar('"')</li>
229+
* <li>withQuote('"')</li>
230230
* <li>withRecordSeparator("\r\n")</li>
231231
* <li>withIgnoreSurroundingSpaces(true)</li>
232232
* </ul>
@@ -249,7 +249,7 @@ public final class CSVFormat implements Serializable {
249249
* </p>
250250
* <ul>
251251
* <li>withDelimiter('\t')</li>
252-
* <li>withQuoteChar(null)</li>
252+
* <li>withQuote(null)</li>
253253
* <li>withRecordSeparator('\n')</li>
254254
* <li>withIgnoreEmptyLines(false)</li>
255255
* <li>withEscape('\\')</li>

0 commit comments

Comments
 (0)