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