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 f3809dd  Javadoc.
f3809dd is described below

commit f3809dd911d38ad0aa4f6a0ce21a7ff353afe4b3
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Dec 15 08:28:01 2021 -0500

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

diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java 
b/src/main/java/org/apache/commons/csv/CSVFormat.java
index aeeacd2..6bf3ed1 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -1160,6 +1160,7 @@ public final class CSVFormat implements Serializable {
      * Returns true if the given string contains the search char.
      *
      * @param source the string to check.
+     * @param searchCh the character to search.
      *
      * @return true if {@code c} contains a line break character
      */
@@ -1342,6 +1343,7 @@ public final class CSVFormat implements Serializable {
      * @param trim                    TODO Doc me.
      * @param trailingDelimiter       TODO Doc me.
      * @param autoFlush               TODO Doc me.
+     * @param allowDuplicateHeaderNames TODO Doc me.
      * @throws IllegalArgumentException if the delimiter is a line break 
character.
      */
     private CSVFormat(final String delimiter, final Character quoteChar, final 
QuoteMode quoteMode, final Character commentStart, final Character escape,
@@ -2106,6 +2108,8 @@ public final class CSVFormat implements Serializable {
     /**
      * Always use quotes unless QuoteMode is NONE, so we not have to look 
ahead.
      *
+     * @param reader What to print
+     * @param appendable Where to print it
      * @throws IOException If an I/O error occurs
      */
     private void printWithQuotes(final Reader reader, final Appendable 
appendable) throws IOException {

Reply via email to