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

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


The following commit(s) were added to refs/heads/master by this push:
     new ef52b3052b Use a string to provide a meaningful description with 
verbose output (#11439)
ef52b3052b is described below

commit ef52b3052b6da658688df7495d72c3a372c177be
Author: Guillaume Nodet <[email protected]>
AuthorDate: Tue Nov 18 16:20:20 2025 +0100

    Use a string to provide a meaningful description with verbose output 
(#11439)
---
 .../src/main/java/org/apache/maven/impl/cache/DefaultRequestCache.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/impl/maven-impl/src/main/java/org/apache/maven/impl/cache/DefaultRequestCache.java
 
b/impl/maven-impl/src/main/java/org/apache/maven/impl/cache/DefaultRequestCache.java
index c42bef5a63..79a7e73a21 100644
--- 
a/impl/maven-impl/src/main/java/org/apache/maven/impl/cache/DefaultRequestCache.java
+++ 
b/impl/maven-impl/src/main/java/org/apache/maven/impl/cache/DefaultRequestCache.java
@@ -40,7 +40,7 @@ public class DefaultRequestCache extends AbstractRequestCache 
{
     private static final Logger LOGGER = 
LoggerFactory.getLogger(DefaultRequestCache.class);
 
     protected static final SessionData.Key<Cache> KEY = 
SessionData.key(Cache.class, CacheMetadata.class);
-    protected static final Object ROOT = new Object();
+    protected static final Object ROOT = "ROOT";
 
     // Comprehensive cache statistics
     private final CacheStatistics statistics = new CacheStatistics();

Reply via email to