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-digester.git


The following commit(s) were added to refs/heads/master by this push:
     new 27adbc7d Javadoc @since tag should be after @return and @throws
27adbc7d is described below

commit 27adbc7d382a7d9ca1f3429f09cff109ddb570a1
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Mar 22 09:32:08 2025 -0400

    Javadoc @since tag should be after @return and @throws
---
 .../src/main/java/org/apache/commons/digester3/Digester.java            | 2 +-
 .../main/java/org/apache/commons/digester3/binder/AddAliasBuilder.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
index 271927cb..ec96427d 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
@@ -1974,10 +1974,10 @@ public class Digester
     /**
      * Helps casting the input object to given type, avoiding NPEs.
      *
-     * @since 3.0
      * @param <T> the type the input object has to be cast.
      * @param obj the object has to be cast.
      * @return the casted object, if input object is not null, null otherwise.
+     * @since 3.0
      */
     private <T> T npeSafeCast( final Object obj )
     {
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/AddAliasBuilder.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/AddAliasBuilder.java
index 9c04b2d1..982e35e2 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/AddAliasBuilder.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/AddAliasBuilder.java
@@ -22,8 +22,8 @@ package org.apache.commons.digester3.binder;
 import java.util.Map;
 
 /**
- * @since 3.2
  * @param <B> the parent builder type.
+ * @since 3.2
  */
 public final class AddAliasBuilder<B>
 {

Reply via email to