From 2f30f6f32330e6ec9868701c3b7925dc7075318a Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 08:43:05 -0400 Subject: [PATCH] Add generic Javadoc parameter --- .../apache/commons/collections4/functors/UniquePredicate.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java b/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java index 2b3b07e40e..a8b3489141 100644 --- a/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java +++ b/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java @@ -26,6 +26,7 @@ * Predicate implementation that returns true the first time an object is * passed into the predicate. * + * @param the type of the input to the predicate. * @since 3.0 */ public final class UniquePredicate implements Predicate, Serializable {