Skip to content

Commit f3809dd

Browse files
committed
Javadoc.
1 parent dbecd03 commit f3809dd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,6 +1160,7 @@ static <T> T[] clone(final T... values) {
11601160
* Returns true if the given string contains the search char.
11611161
*
11621162
* @param source the string to check.
1163+
* @param searchCh the character to search.
11631164
*
11641165
* @return true if {@code c} contains a line break character
11651166
*/
@@ -1342,6 +1343,7 @@ private CSVFormat(final Builder builder) {
13421343
* @param trim TODO Doc me.
13431344
* @param trailingDelimiter TODO Doc me.
13441345
* @param autoFlush TODO Doc me.
1346+
* @param allowDuplicateHeaderNames TODO Doc me.
13451347
* @throws IllegalArgumentException if the delimiter is a line break character.
13461348
*/
13471349
private CSVFormat(final String delimiter, final Character quoteChar, final QuoteMode quoteMode, final Character commentStart, final Character escape,
@@ -2106,6 +2108,8 @@ private void printWithQuotes(final Object object, final CharSequence charSeq, fi
21062108
/**
21072109
* Always use quotes unless QuoteMode is NONE, so we not have to look ahead.
21082110
*
2111+
* @param reader What to print
2112+
* @param appendable Where to print it
21092113
* @throws IOException If an I/O error occurs
21102114
*/
21112115
private void printWithQuotes(final Reader reader, final Appendable appendable) throws IOException {

0 commit comments

Comments
 (0)