Fix IllegalStateException in TDeflater

This commit is contained in:
Dylan 2019-03-17 23:52:48 -04:00 committed by Alexey Andreev
parent de84105241
commit b8c73ae00c

View File

@ -57,7 +57,7 @@ public class TDeflater {
}
compressLevel = level;
try {
impl = new Deflater(compressLevel, strategy, noHeader);
impl = new Deflater(compressLevel, noHeader);
} catch (GZIPException e) {
// do nothing
}