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 2f30f6f32330e6ec9868701c3b7925dc7075318a
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 23 08:43:05 2024 -0400

    Add generic Javadoc parameter
---
 .../java/org/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 2b3b07e40..a8b348914 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 @@ import org.apache.commons.collections4.Predicate;
  * Predicate implementation that returns true the first time an object is
  * passed into the predicate.
  *
+ * @param <T> the type of the input to the predicate.
  * @since 3.0
  */
 public final class UniquePredicate<T> implements Predicate<T>, Serializable {

Reply via email to