You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2017/07/06 07:53:57 UTC

[4/5] commons-compress git commit: unused variable

unused variable


Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/af487204
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/af487204
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/af487204

Branch: refs/heads/master
Commit: af4872045bbe0e4f5058231c30a76a467d1b7b35
Parents: cd90f9e
Author: Stefan Bodewig <bo...@apache.org>
Authored: Thu Jul 6 09:53:20 2017 +0200
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Thu Jul 6 09:53:20 2017 +0200

----------------------------------------------------------------------
 .../compress/archivers/zip/ZipEncodingHelper.java        | 11 -----------
 1 file changed, 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/af487204/src/main/java/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.java
index 68a6305..8cfe606 100644
--- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.java
+++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.java
@@ -30,17 +30,6 @@ public abstract class ZipEncodingHelper {
 
 
     /**
-     * The hexadecimal digits <code>0,...,9,A,...,F</code> encoded as
-     * ASCII bytes.
-     */
-    private static final byte[] HEX_DIGITS =
-        new byte [] {
-        0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x41,
-        0x42, 0x43, 0x44, 0x45, 0x46
-    };
-
-
-    /**
      * name of the encoding UTF-8
      */
     static final String UTF8 = "UTF8";