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

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new 28a0cbb16 Test modernization, clean up utility classes.
28a0cbb16 is described below

commit 28a0cbb16353c059bfa3037c34ac24069876c6c2
Author: James Bognar <[email protected]>
AuthorDate: Mon Aug 25 16:35:38 2025 -0400

    Test modernization, clean up utility classes.
---
 .../src/main/java/org/apache/juneau/common/internal/Utils.java      | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/Utils.java
 
b/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/Utils.java
index 78b7d8671..f21612235 100644
--- 
a/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/Utils.java
+++ 
b/juneau-core/juneau-common/src/main/java/org/apache/juneau/common/internal/Utils.java
@@ -39,6 +39,9 @@ public class Utils {
 
        private static final ConcurrentHashMap<String,String> PROPERTY_TO_ENV = 
new ConcurrentHashMap<>();
 
+       /** Constructor - This class is meant to be subclasses. */
+       protected Utils() {}
+
        /**
         * Creates an array of objects.
         */
@@ -1433,7 +1436,4 @@ public class Utils {
        public static <T> Set<T> u(Set<? extends T> value) {
                return value == null ? null : 
Collections.unmodifiableSet(value);
        }
-
-       /** Constructor */
-       protected Utils() {}
 }
\ No newline at end of file

Reply via email to