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-beanutils.git
The following commit(s) were added to refs/heads/master by this push:
new cd2d298 [BEANUTILS-527] Convert from Collections4 to
java.util.function #8.
cd2d298 is described below
commit cd2d298c0722cac5c90d2ac5db4c8c275724abac
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Oct 20 17:53:08 2019 -0400
[BEANUTILS-527] Convert from Collections4 to java.util.function #8.
Use generics.
---
src/main/java/org/apache/commons/beanutils2/BeanPredicate.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
b/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
index e5c7d51..c729d23 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
@@ -27,7 +27,8 @@ import org.apache.commons.logging.LogFactory;
* <p>Predicate implementation that applies the given <code>Predicate</code>
* to the result of calling the given property getter.
* </p>
- *
+ *
+ * @param <T> the type of the input to the predicate
*/
public class BeanPredicate<T> implements Predicate<T> {