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-validator.git
The following commit(s) were added to refs/heads/master by this push: new cd47a046 Use standard Javadoc @since tag format cd47a046 is described below commit cd47a0467cc5bab9021cf38f5d38a3577c1267b6 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 30 11:21:23 2022 -0400 Use standard Javadoc @since tag format --- src/main/java/org/apache/commons/validator/FormSet.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/validator/FormSet.java b/src/main/java/org/apache/commons/validator/FormSet.java index 71884741..0bc5bb61 100644 --- a/src/main/java/org/apache/commons/validator/FormSet.java +++ b/src/main/java/org/apache/commons/validator/FormSet.java @@ -97,7 +97,7 @@ public class FormSet implements Serializable { * Has this formSet been merged? * * @return true if it has been merged - * @since Validator 1.2.0 + * @since 1.2.0 */ protected boolean isMerged() { return merged; @@ -109,7 +109,7 @@ public class FormSet implements Serializable { * . * * @return The type value - * @since Validator 1.2.0 + * @since 1.2.0 * @throws NullPointerException if there is inconsistency in the locale * definition (not sure about this) */ @@ -141,7 +141,7 @@ public class FormSet implements Serializable { * merge a "parent" formSet. * * @param depends FormSet to be merged - * @since Validator 1.2.0 + * @since 1.2.0 */ protected void merge(final FormSet depends) { if (depends != null) {