Skip to content

Commit ba65304

Browse files
committed
Remove unused dictionary check
1 parent 5a603f2 commit ba65304

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/software/coley/llzip/format/compression/DeflateDecompressor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public ByteData decompress(LocalFileHeader header, ByteData data) throws IOExcep
4141
if (count != 0) {
4242
out.write(output, 0, count);
4343
}
44-
} while (!inflater.finished() && !inflater.needsDictionary());
44+
} while (!inflater.finished());
4545
} catch (DataFormatException e) {
4646
String s = e.getMessage();
4747
throw (ZipException) new ZipException(s != null ? null : "Invalid ZLIB data format").initCause(e);

0 commit comments

Comments
 (0)