Javadoc @see tags do not need to use a FQCN for classes in java.lang

This commit is contained in:
Gary Gregory 2022-08-29 07:06:39 -04:00
parent 0f3ad2284e
commit b605686f52
1 changed files with 2 additions and 2 deletions

View File

@ -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