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/11 06:07:33 UTC

[commons-compress] 01/02: Remove @SuppressWarnings

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 657707024867925b4122ffc77821128436a5b572
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Dec 11 01:02:23 2022 -0500

    Remove @SuppressWarnings
---
 .../java/org/apache/commons/compress/archivers/sevenz/LZMADecoder.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/archivers/sevenz/LZMADecoder.java b/src/main/java/org/apache/commons/compress/archivers/sevenz/LZMADecoder.java
index 7fc92af7..82626e8f 100644
--- a/src/main/java/org/apache/commons/compress/archivers/sevenz/LZMADecoder.java
+++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/LZMADecoder.java
@@ -56,7 +56,6 @@ class LZMADecoder extends AbstractCoder {
         return lzmaIn;
     }
 
-    @SuppressWarnings("resource")
     @Override
     OutputStream encode(final OutputStream out, final Object opts)
         throws IOException {