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 89f8171 Javadoc: Add missing @since 1.7. 89f8171 is described below commit 89f81712154a7d510e0b0f9323b08421cb8a529a Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Tue May 28 23:47:29 2019 -0400 Javadoc: Add missing @since 1.7. --- src/main/java/org/apache/commons/csv/CSVFormat.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 922dad6..d611ab2 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -884,6 +884,7 @@ public final class CSVFormat implements Serializable { * Returns true if and only if duplicate names are allowed in the headers. * * @return whether duplicate header names are allowed + * @since 1.7 */ public boolean getAllowDuplicateHeaderNames() { return allowDuplicateHeaderNames; @@ -1691,7 +1692,8 @@ public final class CSVFormat implements Serializable { * Returns a new {@code CSVFormat} with duplicate header names behavior set to the given value. * * @param allowDuplicateHeaderNames the duplicate header names behavior, true to allow, false to disallow. - * @return a new {@code CSVFormat} with duplicate header names behavior set to the given value + * @return a new {@code CSVFormat} with duplicate header names behavior set to the given value. + * @since 1.7 */ public CSVFormat withAllowDuplicateHeaderNames(final boolean allowDuplicateHeaderNames) { return new CSVFormat(delimiter, quoteCharacter, quoteMode, commentMarker, escapeCharacter,