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 6f24ab1e6b81597f75ce77822b60491823e77535
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jun 23 08:42:56 2024 -0400

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

diff --git 
a/src/main/java/org/apache/commons/collections4/functors/NullPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/NullPredicate.java
index ff1b934e0..8aca8c870 100644
--- a/src/main/java/org/apache/commons/collections4/functors/NullPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/NullPredicate.java
@@ -23,6 +23,7 @@ import org.apache.commons.collections4.Predicate;
 /**
  * Predicate implementation that returns true if the input is null.
  *
+ * @param <T> the type of the input to the predicate.
  * @since 3.0
  */
 public final class NullPredicate<T> implements Predicate<T>, Serializable {

Reply via email to