This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new 9fc2f8f7 Javadoc
9fc2f8f7 is described below

commit 9fc2f8f76762a4bd47fce7dbcaa25b4dc32305bc
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Mar 11 17:55:35 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/csv/CSVPrinter.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVPrinter.java 
b/src/main/java/org/apache/commons/csv/CSVPrinter.java
index 24849fb3..170e3927 100644
--- a/src/main/java/org/apache/commons/csv/CSVPrinter.java
+++ b/src/main/java/org/apache/commons/csv/CSVPrinter.java
@@ -436,7 +436,7 @@ public final class CSVPrinter implements Flushable, 
Closeable {
      * Prints all the objects in the given JDBC result set.
      * <p>
      * You can use {@link CSVFormat.Builder#setMaxRows(long)} to limit how 
many rows a result set produces. This is most useful when you cannot limit rows
-     * through {@link Statement#setLargeMaxRows(long)}.
+     * through {@link Statement#setLargeMaxRows(long)} or {@link 
Statement#setMaxRows(int)}.
      * </p>
      *
      * @param resultSet The values to print.
@@ -468,7 +468,7 @@ public final class CSVPrinter implements Flushable, 
Closeable {
      * Prints all the objects with metadata in the given JDBC result set based 
on the header boolean.
      * <p>
      * You can use {@link CSVFormat.Builder#setMaxRows(long)} to limit how 
many rows a result set produces. This is most useful when you cannot limit rows
-     * through {@link Statement#setLargeMaxRows(long)}.
+     * through {@link Statement#setLargeMaxRows(long)} or {@link 
Statement#setMaxRows(int)}.
      * </p>
      *
      * @param resultSet source of row data.

Reply via email to