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 541300f23a6bc059f55fe902dc9edeeeda1cc706
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 23 08:42:58 2024 -0400

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

diff --git 
a/src/main/java/org/apache/commons/collections4/functors/PredicateDecorator.java
 
b/src/main/java/org/apache/commons/collections4/functors/PredicateDecorator.java
index 2b375818e..8cf269913 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/PredicateDecorator.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/PredicateDecorator.java
@@ -24,6 +24,7 @@ import org.apache.commons.collections4.Predicate;
  * This interface enables tools to access the decorated predicates.
  * </p>
  *
+ * @param <T> the type of the input to the predicate.
  * @since 3.1
  */
 public interface PredicateDecorator<T> extends Predicate<T> {

Reply via email to