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


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

commit 9552c00ea3741c2240f3bea9d48ea9ea2fa53ec4
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Mar 22 09:33:09 2025 -0400

    Javadoc @since tag should be after @return and @throws
---
 .../java/org/apache/commons/functor/core/comparator/IsWithinRange.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/commons/functor/core/comparator/IsWithinRange.java
 
b/core/src/main/java/org/apache/commons/functor/core/comparator/IsWithinRange.java
index 07a9096..823584f 100644
--- 
a/core/src/main/java/org/apache/commons/functor/core/comparator/IsWithinRange.java
+++ 
b/core/src/main/java/org/apache/commons/functor/core/comparator/IsWithinRange.java
@@ -23,8 +23,8 @@ import org.apache.commons.lang3.Validate;
  * A {@link Predicate} that tests whether a {@link Comparable} object is
  * within a range. The range is defined in the constructor.
  *
- * @since 1.0
  * @param <A> the predicate argument type.
+ * @since 1.0
  */
 public class IsWithinRange<A extends Comparable<A>> implements Predicate<A> {
 

Reply via email to