This is an automated email from the ASF dual-hosted git repository.
markt-asf pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/11.0.x by this push:
new 0635928cdc Make field final
0635928cdc is described below
commit 0635928cdcd7969bbcef234caf598bfc6ab414ac
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]