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 2adb0de0ddbea4e73d37fef0156f24ff5c891f8d Author: Gary Gregory <[email protected]> AuthorDate: Sun Jun 23 08:42:51 2024 -0400 Add generic Javadoc parameter --- .../java/org/apache/commons/collections4/functors/IdentityPredicate.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java b/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java index 539671b02..74ef13ad7 100644 --- a/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java +++ b/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java @@ -24,6 +24,7 @@ import org.apache.commons.collections4.Predicate; * Predicate implementation that returns true if the input is the same object * as the one stored in this predicate. * + * @param <T> the type of the input to the predicate. * @since 3.0 */ public final class IdentityPredicate<T> implements Predicate<T>, Serializable {
