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


The following commit(s) were added to refs/heads/master by this push:
     new 63cd3ceb Remove unused exception from private method signature.
63cd3ceb is described below

commit 63cd3cebc164e3b38278f260e81c384eb6508d7a
Author: Gary Gregory <[email protected]>
AuthorDate: Thu May 5 09:14:59 2022 -0400

    Remove unused exception from private method signature.
---
 .../java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java 
b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
index c51e376e..c3c19174 100644
--- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
+++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
@@ -2055,7 +2055,7 @@ public class SevenZFile implements Closeable {
         return lastSegment + "~";
     }
 
-    private static byte[] utf16Decode(final char[] chars) throws IOException {
+    private static byte[] utf16Decode(final char[] chars) {
         if (chars == null) {
             return null;
         }

Reply via email to