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
commit ad530d229ee6ed613eaa7c181a1ad946f70034e2 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Oct 3 07:42:15 2024 -0400 Remove method that only calls super --- src/main/java/org/apache/commons/beanutils2/BeanMap.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/main/java/org/apache/commons/beanutils2/BeanMap.java b/src/main/java/org/apache/commons/beanutils2/BeanMap.java index c44a1757..02d09f9c 100644 --- a/src/main/java/org/apache/commons/beanutils2/BeanMap.java +++ b/src/main/java/org/apache/commons/beanutils2/BeanMap.java @@ -236,18 +236,6 @@ public class BeanMap extends AbstractMap<String, Object> implements Cloneable { return getReadMethod(name) != null; } - /** - * Returns true if the bean defines a property whose current value is the given object. - * - * @param value the value to check - * @return false true if the bean has at least one property whose current value is that object, false otherwise - */ - @Override - public boolean containsValue(final Object value) { - // use default implementation - return super.containsValue(value); - } - /** * Converts the given value to the given type. First, reflection is used to find a public constructor declared by the given class that takes one argument, * which must be the precise type of the given value. If such a constructor is found, a new object is created by passing the given value to that