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 9e6e2be5346afb943ea6294de7d91cfe7559261e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jun 4 07:59:24 2024 -0400 Better local variable name (PMD) --- .../commons/compress/archivers/zip/ParallelScatterZipCreator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java b/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java index 004c24b2b..da7d71444 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java @@ -152,7 +152,7 @@ public class ParallelScatterZipCreator { for (final ScatterZipOutputStream scatterStream : streams) { try { scatterStream.close(); - } catch (final IOException ex) { // NOSONAR + } catch (final IOException ignored) { // no way to properly log this } }