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 41a3e21 [BEANUTILS-527] Convert from Collections4 to
java.util.function #8.
41a3e21 is described below
commit 41a3e2131311e9535284bf534285e7e51e0664a1
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Oct 20 19:05:48 2019 -0400
[BEANUTILS-527] Convert from Collections4 to java.util.function #8.
org.apache.commons.beanutils2.BeanToPropertyValueTransformer implements
java.util.function.Function instead of
org.apache.commons.collections4.Transformer.
---
.../org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
b/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
index 015cf57..69b4bea 100644
---
a/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
+++
b/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
@@ -27,7 +27,7 @@ import org.apache.commons.logging.LogFactory;
/**
* <p><code>Transformer</code> that outputs a property value.</p>
*
- * <p>An implementation of
<code>org.apache.commons.collections4.Transformer</code> that transforms
+ * <p>An implementation of <code>java.util.function.Function</code> that
transforms
* the object provided by returning the value of a specified property of the
object. The
* constructor for <code>BeanToPropertyValueTransformer</code> requires the
name of the property
* that will be used in the transformation. The property can be a simple,
nested, indexed, or