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-collections.git

commit 4dcdf5e375748a428670ca486cfdebb08ad7b68f
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Apr 18 22:03:13 2025 -0400

    Use final
---
 src/test/java/org/apache/commons/collections4/map/LRUMapTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/collections4/map/LRUMapTest.java 
b/src/test/java/org/apache/commons/collections4/map/LRUMapTest.java
index a438f49c0..d71c0c442 100644
--- a/src/test/java/org/apache/commons/collections4/map/LRUMapTest.java
+++ b/src/test/java/org/apache/commons/collections4/map/LRUMapTest.java
@@ -115,7 +115,7 @@ public class LRUMapTest<K, V> extends 
AbstractOrderedMapTest<K, V> {
         }
 
         @Override
-        public boolean equals(Object o) {
+        public boolean equals(final Object o) {
             // Pairs with equals()
             return super.equals(o);
         }

Reply via email to