Author: britter
Date: Tue Jul 15 17:12:31 2014
New Revision: 1610758
URL: http://svn.apache.org/r1610758
Log:
Make clear that users don't need to call println() after calling printRecord()
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java?rev=1610758&r1=1610757&r2=1610758&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVPrinter.java
Tue Jul 15 17:12:31 2014
@@ -344,7 +344,8 @@ public final class CSVPrinter implements
* Prints the given values a single record of delimiter separated values
followed by the record separator.
*
* <p>
- * The values will be quoted if needed. Quotes and newLine characters will
be escaped.
+ * The values will be quoted if needed. Quotes and newLine characters will
be escaped. This method adds the record
+ * separator to the output after printing the record, so there is no need
to call {@link #println()}.
* </p>
*
* @param values
@@ -363,7 +364,8 @@ public final class CSVPrinter implements
* Prints the given values a single record of delimiter separated values
followed by the record separator.
*
* <p>
- * The values will be quoted if needed. Quotes and newLine characters will
be escaped.
+ * The values will be quoted if needed. Quotes and newLine characters will
be escaped. This method adds the record
+ * separator to the output after printing the record, so there is no need
to call {@link #println()}.
* </p>
*
* @param values