This is an automated email from the ASF dual-hosted git repository. tv pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
The following commit(s) were added to refs/heads/master by this push: new 18a10e6 Make field final 18a10e6 is described below commit 18a10e60451122cc7591f67209758f984cfb7f4e Author: Thomas Vandahl <t...@apache.org> AuthorDate: Sat Mar 27 17:51:38 2021 +0100 Make field final --- .../org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java index b1b31c5..6e42379 100644 --- a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java +++ b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/utils/discovery/UDPDiscoveryReceiver.java @@ -82,7 +82,7 @@ public class UDPDiscoveryReceiver private IElementSerializer serializer; /** Is it shutdown. */ - private AtomicBoolean shutdown = new AtomicBoolean(false); + private final AtomicBoolean shutdown = new AtomicBoolean(false); /** * Constructor for the LateralUDPReceiver object.