This is an automated email from the ASF dual-hosted git repository.
markt 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 7695dda6ae Use final to clarify intent
7695dda6ae is described below
commit 7695dda6ae514445bae168b1d827de16ea1818a3
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Sep 25 08:05:50 2023 +0100
Use final to clarify intent
---
java/org/apache/catalina/ha/session/DeltaRequest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/org/apache/catalina/ha/session/DeltaRequest.java
b/java/org/apache/catalina/ha/session/DeltaRequest.java
index db26be78ef..6f21d7f8b2 100644
--- a/java/org/apache/catalina/ha/session/DeltaRequest.java
+++ b/java/org/apache/catalina/ha/session/DeltaRequest.java
@@ -63,7 +63,7 @@ public class DeltaRequest implements Externalizable {
public static final String NAME_LISTENER = "__SET__LISTENER__";
private String sessionId;
- private Deque<AttributeInfo> actions = new ArrayDeque<>();
+ private final Deque<AttributeInfo> actions = new ArrayDeque<>();
private final Deque<AttributeInfo> actionPool = new ArrayDeque<>();
private boolean recordAllActions = false;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]