This is an automated email from the ASF dual-hosted git repository. markt 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 c0ba8ce1aa Use final to clarify intent c0ba8ce1aa is described below commit c0ba8ce1aa6836eca1b24873c16bbe1d9cb1320a Author: Mark Thomas <ma...@apache.org> 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: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org