From acec0349ef719904d94d5f78b73b6f6601cd287e Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 08:42:42 -0400 Subject: [PATCH] Add generic Javadoc parameter --- .../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 the type of the input to the predicate. * @since 3.0 */ public final class EqualPredicate implements Predicate, Serializable {