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

asf-gitbox-commits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new b70b4fa5ff Refactor field declaration to use `Map` interface
b70b4fa5ff is described below

commit b70b4fa5ff7f0ab14ffd06ba5ef2a4d7f75e646e
Author: Daniel Sun <[email protected]>
AuthorDate: Sun May 31 12:06:11 2026 +0900

    Refactor field declaration to use `Map` interface
---
 src/main/groovy/groovy/concurrent/Dataflows.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/groovy/groovy/concurrent/Dataflows.groovy 
b/src/main/groovy/groovy/concurrent/Dataflows.groovy
index 80ba77d86c..8ade8eb261 100644
--- a/src/main/groovy/groovy/concurrent/Dataflows.groovy
+++ b/src/main/groovy/groovy/concurrent/Dataflows.groovy
@@ -48,7 +48,7 @@ import java.util.concurrent.ConcurrentHashMap
 @CompileStatic
 class Dataflows {
 
-    private final ConcurrentHashMap<String, DataflowVariable> variables = new 
ConcurrentHashMap<>()
+    private final Map<String, DataflowVariable> variables = new 
ConcurrentHashMap<>()
 
     /**
      * Reading a property awaits the corresponding DataflowVariable's value.

Reply via email to