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

markt-asf pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/10.1.x by this push:
     new cef29666c0 Make field final
cef29666c0 is described below

commit cef29666c07a4a82bab1d6d0ea1418264c67c76c
Author: Mark Thomas <[email protected]>
AuthorDate: Tue Sep 15 16:03:22 2026 +0100

    Make field final
---
 java/org/apache/tomcat/websocket/TransformationFactory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/tomcat/websocket/TransformationFactory.java 
b/java/org/apache/tomcat/websocket/TransformationFactory.java
index 9a075480e1..f8472ec82a 100644
--- a/java/org/apache/tomcat/websocket/TransformationFactory.java
+++ b/java/org/apache/tomcat/websocket/TransformationFactory.java
@@ -32,7 +32,7 @@ public class TransformationFactory {
 
     private static final TransformationFactory factory = new 
TransformationFactory();
 
-    private Map<String,TransformationBuilder> builders = new HashMap<>();
+    private final Map<String,TransformationBuilder> builders = new HashMap<>();
 
 
     private TransformationFactory() {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to