You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/12/08 16:15:49 UTC

[commons-compress] 18/38: Use final parameter

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

commit 4c737168466b254453c34b03c7a9cd9ff2a1be58
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 8 11:07:35 2022 -0500

    Use final parameter
---
 .../org/apache/commons/compress/archivers/dump/DumpArchiveSummary.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveSummary.java b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveSummary.java
index 53949e2b..b197564c 100644
--- a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveSummary.java
+++ b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveSummary.java
@@ -294,7 +294,7 @@ public class DumpArchiveSummary {
     }
 
     @Override
-    public boolean equals(Object obj) {
+    public boolean equals(final Object obj) {
         if (this == obj) {
             return true;
         }