From 370da7382beb9bb686748304a4e754b5f3bc6441 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 08:42:54 -0400 Subject: [PATCH] Add generic Javadoc parameter --- .../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 the type of the input to the predicate. * @since 3.0 */ public final class NotNullPredicate implements Predicate, Serializable {