Skip to content

Commit

Permalink
Merge pull request #466 from sigee/fix-javadoc-2
Browse files Browse the repository at this point in the history
Fix documentation for CSVFormat private constructor
  • Loading branch information
garydgregory authored Aug 21, 2024
2 parents 3b33668 + 9de89e1 commit 1559a3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/apache/commons/csv/CSVFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -1528,14 +1528,14 @@ private CSVFormat(final Builder builder) {
* @param ignoreSurroundingSpaces {@code true} when whitespaces enclosing values should be ignored.
* @param ignoreEmptyLines {@code true} when the parser should skip empty lines.
* @param recordSeparator the line separator to use for output.
* @param nullString the line separator to use for output.
* @param headerComments the comments to be printed by the Printer before the actual CSV data..
* @param nullString the String to convert to and from {@code null}.
* @param headerComments the comments to be printed by the Printer before the actual CSV data.
* @param header the header.
* @param skipHeaderRecord if {@code true} the header row will be skipped.
* @param allowMissingColumnNames if {@code true} the missing column names are allowed when parsing the header line.
* @param ignoreHeaderCase if {@code true} header names will be accessed ignoring case when parsing input.
* @param trim if {@code true} next record value will be trimmed.
* @param trailingDelimiter if {@code true} the trailing delimiter wil be added before record separator (if set)..
* @param trailingDelimiter if {@code true} the trailing delimiter wil be added before record separator (if set).
* @param autoFlush if {@code true} the underlying stream will be flushed before closing.
* @param duplicateHeaderMode the behavior when handling duplicate headers.
* @param trailingData whether reading trailing data is allowed in records, helps Excel compatibility.
Expand Down

0 comments on commit 1559a3c

Please sign in to comment.