This is an automated email from the ASF dual-hosted git repository.
markt-asf pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 33479c6cb8 Make field final
33479c6cb8 is described below
commit 33479c6cb8df92154f02b304a682f0c4982c4df0
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 6bcce0e49a..123a4a6c7e 100644
--- a/java/org/apache/tomcat/websocket/TransformationFactory.java
+++ b/java/org/apache/tomcat/websocket/TransformationFactory.java
@@ -33,7 +33,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]