File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -344,7 +344,8 @@ public void println() throws IOException {
344344 * Prints the given values a single record of delimiter separated values followed by the record separator.
345345 *
346346 * <p>
347- * The values will be quoted if needed. Quotes and newLine characters will be escaped.
347+ * The values will be quoted if needed. Quotes and newLine characters will be escaped. This method adds the record
348+ * separator to the output after printing the record, so there is no need to call {@link #println()}.
348349 * </p>
349350 *
350351 * @param values
@@ -363,7 +364,8 @@ public void printRecord(final Iterable<?> values) throws IOException {
363364 * Prints the given values a single record of delimiter separated values followed by the record separator.
364365 *
365366 * <p>
366- * The values will be quoted if needed. Quotes and newLine characters will be escaped.
367+ * The values will be quoted if needed. Quotes and newLine characters will be escaped. This method adds the record
368+ * separator to the output after printing the record, so there is no need to call {@link #println()}.
367369 * </p>
368370 *
369371 * @param values
You can’t perform that action at this time.
0 commit comments