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 22c085d03c0d99c64812f26f5393386bf6939bc5
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Jun 4 08:03:53 2024 -0400

    Better local variable name (PMD)
---
 .../apache/commons/compress/archivers/zip/ZipMemoryFileSystemTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/compress/archivers/zip/ZipMemoryFileSystemTest.java
 
b/src/test/java/org/apache/commons/compress/archivers/zip/ZipMemoryFileSystemTest.java
index 73b6a4187..68d5f48a6 100644
--- 
a/src/test/java/org/apache/commons/compress/archivers/zip/ZipMemoryFileSystemTest.java
+++ 
b/src/test/java/org/apache/commons/compress/archivers/zip/ZipMemoryFileSystemTest.java
@@ -83,7 +83,8 @@ public class ZipMemoryFileSystemTest {
             walk.sorted(Comparator.reverseOrder()).peek(path -> 
println("Deleting: " + path.toAbsolutePath())).forEach(path -> {
                 try {
                     Files.deleteIfExists(path);
-                } catch (final IOException ignore) {
+                } catch (final IOException ignored) {
+                    // ignored
                 }
             });
         }

Reply via email to