You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/08/29 11:06:43 UTC

[commons-collections] branch master updated: Javadoc @see tags do not need to use a FQCN for classes in java.lang

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


The following commit(s) were added to refs/heads/master by this push:
     new b605686f5 Javadoc @see tags do not need to use a FQCN for classes in java.lang
b605686f5 is described below

commit b605686f528963a590a87abeddccd9cfc2dc5389
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Aug 29 07:06:39 2022 -0400

    Javadoc @see tags do not need to use a FQCN for classes in java.lang
---
 .../org/apache/commons/collections4/functors/ComparatorPredicate.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java b/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
index 86b340a76..5a50c6bed 100644
--- a/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
@@ -149,8 +149,8 @@ public class ComparatorPredicate<T> implements Predicate<T>, Serializable {
      * <li>{@code comparator.compare(object, input) &lt;= 0 &amp;&amp; criterion == LESS_OR_EQUAL}</li>
      * </ul>
      *
-     * @see org.apache.commons.collections4.Predicate#evaluate(java.lang.Object)
-     * @see java.util.Comparator#compare(java.lang.Object first, java.lang.Object second)
+     * @see org.apache.commons.collections4.Predicate#evaluate(Object)
+     * @see java.util.Comparator#compare(Object first, Object second)
      *
      * @param target  the target object to compare to
      * @return {@code true} if the comparison succeeds according to the selected criterion