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 bfb879f916 Fix build failure
bfb879f916 is described below

commit bfb879f916b4768cee76e493e9b277b9f902d6e1
Author: James Bognar <[email protected]>
AuthorDate: Tue Dec 16 16:03:07 2025 -0500

    Fix build failure
---
 .../src/main/java/org/apache/juneau/BeanContext.java                | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java
index 8ff5b036fc..1b8eea0473 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java
@@ -175,9 +175,9 @@ public class BeanContext extends Context {
                private static final Cache<HashKey,BeanContext> CACHE = 
Cache.of(HashKey.class, BeanContext.class).build();
                private static final Settings SETTINGS = Settings.get();
 
-               private static <T> T env(String property, T def) {
-                       return SETTINGS.get(property, def)
-;              }
+//             private static <T> T env(String property, T def) {
+//                     return SETTINGS.get(property, def);
+//             }
 
                private static Set<Class<?>> classSet() {
                        return new TreeSet<>(comparing(Class::getName));

Reply via email to