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 7bfa5d4cabf02d1d3e0e8470bded6560d32a7f7a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jan 31 16:16:52 2025 -0500 org.apache.commons.beanutils2.PropertyUtils is now final (it only contains static methods) --- src/changes/changes.xml | 1 + src/main/java/org/apache/commons/beanutils2/PropertyUtils.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/changes/changes.xml b/src/changes/changes.xml index bd6a458f..02847934 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -31,6 +31,7 @@ <!-- FIX --> <action type="fix" dev="ggregory" due-to="Gary Gregory">Javadoc is missing its Overview page.</action> <action type="fix" dev="ggregory" due-to="Gary Gregory">Remove -nouses directive from maven-bundle-plugin. OSGi package imports now state 'uses' definitions for package imports, this doesn't affect JPMS (from org.apache.commons:commons-parent:80).</action> + <action type="fix" dev="ggregory" due-to="Gary Gregory">org.apache.commons.beanutils2.PropertyUtils is now final (it only contains static methods).</action> <!-- ADD --> <!-- UPDATE --> <action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 78 to 81.</action> diff --git a/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java b/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java index 4027913f..84af2a33 100644 --- a/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java +++ b/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java @@ -35,7 +35,7 @@ import java.util.Map; * @see org.apache.commons.beanutils2.expression.Resolver */ -public class PropertyUtils { +public final class PropertyUtils { /** * Adds a {@code BeanIntrospector}. This object is invoked when the property descriptors of a class need to be obtained.