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 370da7382beb9bb686748304a4e754b5f3bc6441 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 23 08:42:54 2024 -0400 Add generic Javadoc parameter --- .../java/org/apache/commons/collections4/functors/NotNullPredicate.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/collections4/functors/NotNullPredicate.java b/src/main/java/org/apache/commons/collections4/functors/NotNullPredicate.java index 1e1ba3218..e8ebbf604 100644 --- a/src/main/java/org/apache/commons/collections4/functors/NotNullPredicate.java +++ b/src/main/java/org/apache/commons/collections4/functors/NotNullPredicate.java @@ -23,6 +23,7 @@ import org.apache.commons.collections4.Predicate; /** * Predicate implementation that returns true if the input is not null. * + * @param <T> the type of the input to the predicate. * @since 3.0 */ public final class NotNullPredicate<T> implements Predicate<T>, Serializable {