Repository: commons-compress Updated Branches: refs/heads/master 0714e1063 -> 7f110cf31
Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/7f110cf3 Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/7f110cf3 Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/7f110cf3 Branch: refs/heads/master Commit: 7f110cf318a5f99554b1628512c70085ff25b2bf Parents: 0714e10 Author: Gary Gregory <ggreg...@apache.org> Authored: Sat Jun 25 14:32:12 2016 -0700 Committer: Gary Gregory <ggreg...@apache.org> Committed: Sat Jun 25 14:32:12 2016 -0700 ---------------------------------------------------------------------- .../commons/compress/archivers/zip/UnshrinkingInputStream.java | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/7f110cf3/src/main/java/org/apache/commons/compress/archivers/zip/UnshrinkingInputStream.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/UnshrinkingInputStream.java b/src/main/java/org/apache/commons/compress/archivers/zip/UnshrinkingInputStream.java index 63d2156..d33db30 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/UnshrinkingInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/UnshrinkingInputStream.java @@ -34,6 +34,12 @@ class UnshrinkingInputStream extends LZWInputStream { private static final int MAX_TABLE_SIZE = 1 << MAX_CODE_SIZE; private final boolean[] isUsed; + /** + * IOException is not actually thrown! + * + * @param inputStream + * @throws IOException IOException is not actually thrown! + */ public UnshrinkingInputStream(final InputStream inputStream) throws IOException { super(inputStream, ByteOrder.LITTLE_ENDIAN); setClearCode(DEFAULT_CODE_SIZE);