This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
commit 30775b9bdd689ce0a5d4e6ec98bd66aee0251743 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jul 9 19:23:31 2024 -0400 Use final --- .../java/org/apache/commons/jcs/yajcache/beans/CachePutEvent.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commons-jcs3-sandbox/commons-jcs3-yajcache/src/main/java/org/apache/commons/jcs/yajcache/beans/CachePutEvent.java b/commons-jcs3-sandbox/commons-jcs3-yajcache/src/main/java/org/apache/commons/jcs/yajcache/beans/CachePutEvent.java index 6e8371aa..b6b1b8fe 100644 --- a/commons-jcs3-sandbox/commons-jcs3-yajcache/src/main/java/org/apache/commons/jcs/yajcache/beans/CachePutEvent.java +++ b/commons-jcs3-sandbox/commons-jcs3-yajcache/src/main/java/org/apache/commons/jcs/yajcache/beans/CachePutEvent.java @@ -28,8 +28,8 @@ public class CachePutEvent<V> extends CacheChangeEvent<V> { private final @NonNullable String key; private final @NonNullable V value; - public CachePutEvent(@NonNullable ICache<V> cache, - @NonNullable String key, @NonNullable V value) + public CachePutEvent(@NonNullable final ICache<V> cache, + @NonNullable final String key, @NonNullable final V value) { super(cache); this.key = key; @@ -43,7 +43,7 @@ public class CachePutEvent<V> extends CacheChangeEvent<V> { } @Override - public boolean dispatch(@NonNullable ICacheChangeHandler<V> handler) { + public boolean dispatch(@NonNullable final ICacheChangeHandler<V> handler) { return handler.handlePut( super.getCache().getName(), this.key, this.value); }