This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch 1.X
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git

commit c9f9763298841eb625cc17026917e7bc86bf0387
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Mon May 19 08:14:05 2025 -0400

    Use an existing import instead of a FQCN
---
 src/test/java/org/apache/commons/beanutils/PropertyUtilsTestCase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/beanutils/PropertyUtilsTestCase.java 
b/src/test/java/org/apache/commons/beanutils/PropertyUtilsTestCase.java
index ac83b694..8aaec9e6 100644
--- a/src/test/java/org/apache/commons/beanutils/PropertyUtilsTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils/PropertyUtilsTestCase.java
@@ -206,7 +206,7 @@ public class PropertyUtilsTestCase extends TestCase {
      */
     private String keysToString(final Map<?, ?> map) {
         final Object[] mapKeys = map.keySet().toArray();
-        java.util.Arrays.sort(mapKeys);
+        Arrays.sort(mapKeys);
         final StringBuilder buf = new StringBuilder();
         for(int i=0; i<mapKeys.length; ++i) {
             if (i != 0) {

Reply via email to