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 02128335d Test modernization, clean up utility classes.
02128335d is described below
commit 02128335d4325841b81946b2c0dc9f3cf3a79536
Author: James Bognar <[email protected]>
AuthorDate: Mon Aug 25 12:58:36 2025 -0400
Test modernization, clean up utility classes.
---
.../src/main/java/org/apache/juneau/internal/Utils2.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/internal/Utils2.java
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/internal/Utils2.java
index 756fc2903..22b2dc40b 100644
---
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/internal/Utils2.java
+++
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/internal/Utils2.java
@@ -18,6 +18,7 @@ import java.util.function.*;
import org.apache.juneau.*;
import org.apache.juneau.collections.*;
+import org.apache.juneau.common.internal.*;
import org.apache.juneau.reflect.*;
/**
@@ -26,7 +27,7 @@ import org.apache.juneau.reflect.*;
* <h5 class='section'>See Also:</h5><ul>
* </ul>
*/
-public class Utils2 {
+public class Utils2 extends Utils {
/**
* If the specified object is a {@link Supplier} or {@link Value},
returns the inner value, otherwise the same value.