From 97acf62091d275188c71a841fb754bbf978a67be Mon Sep 17 00:00:00 2001
From: Gary Gregory
Date: Sun, 23 Jun 2024 08:42:40 -0400
Subject: [PATCH] Add generic Javadoc parameter
---
.../commons/collections4/functors/ComparatorPredicate.java | 1 +
1 file changed, 1 insertion(+)
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 7b9846ef3..265a967fa 100644
--- a/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
@@ -74,6 +74,7 @@ import org.apache.commons.collections4.Predicate;
* using the {@code GREATER} evaluation criterion constant. This instructs the predicate to
* return {@code true} if the comparator returns a value greater than {@code 0}.
*
+ * @param the type of the input to the predicate.
* @since 4.0
*/
public class ComparatorPredicate implements Predicate, Serializable {