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

commit acec0349ef719904d94d5f78b73b6f6601cd287e
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 23 08:42:42 2024 -0400

    Add generic Javadoc parameter
---
 .../java/org/apache/commons/collections4/functors/EqualPredicate.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java
index b2624e268..260398a29 100644
--- a/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java
@@ -25,6 +25,7 @@ import org.apache.commons.collections4.Predicate;
  * Predicate implementation that returns true if the input is the same object
  * as the one stored in this predicate by equals.
  *
+ * @param <T> the type of the input to the predicate.
  * @since 3.0
  */
 public final class EqualPredicate<T> implements Predicate<T>, Serializable {

Reply via email to