Fix typo in LibdeflateVelocityCompressor

This commit is contained in:
Andrew Steinborn
2020-06-21 14:14:41 -04:00
parent 91743aaa9d
commit 877f98b87a

View File

@@ -22,7 +22,7 @@ public class LibdeflateVelocityCompressor implements VelocityCompressor {
} }
this.inflateCtx = inflate.init(); this.inflateCtx = inflate.init();
this.deflateCtx = deflate.init(level == -1 ? 6 : level); this.deflateCtx = deflate.init(correctedLevel);
} }
@Override @Override