[CSV-156] Incorrect Javadoc on QuoteMode.NONE.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1694977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2015-08-10 07:05:58 +00:00
parent cd8799e7b2
commit 224d30746c
2 changed files with 3 additions and 3 deletions

View File

@ -40,6 +40,7 @@
<body> <body>
<release version="1.1.1" date="20??-MM-DD" description="Feature and bug fix release"> <release version="1.1.1" date="20??-MM-DD" description="Feature and bug fix release">
<action issue="CSV-145" type="fix" dev="ggregory" due-to="Frank Ulbricht">CSVFormat.with* methods clear the header comments</action> <action issue="CSV-145" type="fix" dev="ggregory" due-to="Frank Ulbricht">CSVFormat.with* methods clear the header comments</action>
<action issue="CSV-156" type="fix" dev="ggregory" due-to="Jason Steenstra-Pickens">Incorrect Javadoc on QuoteMode.NONE</action>
</release> </release>
<release version="1.1" date="2014-11-16" description="Feature and bug fix release"> <release version="1.1" date="2014-11-16" description="Feature and bug fix release">
<action issue="CSV-140" type="fix" dev="ggregory" due-to="Damjan Jovanovic">QuoteMode.NON_NUMERIC doesn't work with CSVPrinter.printRecords(ResultSet)</action> <action issue="CSV-140" type="fix" dev="ggregory" due-to="Damjan Jovanovic">QuoteMode.NON_NUMERIC doesn't work with CSVPrinter.printRecords(ResultSet)</action>

View File

@ -40,9 +40,8 @@ public enum QuoteMode {
NON_NUMERIC, NON_NUMERIC,
/** /**
* Never quotes fields. When the delimiter occurs in data, it is preceded by the current escape character. If the * Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the current escape
* escape character is not set, printing will throw an exception if any characters that require escaping are * character. If the escape character is not set, format validation throws an exception.
* encountered.
*/ */
NONE NONE
} }