GP-146 - fix compile error - missing ZLIB class specifier.

This commit is contained in:
dev747368
2020-09-08 15:17:59 -04:00
parent 096ff3bb37
commit 603f97f5d7

View File

@@ -104,7 +104,7 @@ public class CrushedPNGUtil {
try (ByteArrayOutputStream decompressedOutput = new ByteArrayOutputStream(expectedSize);
InflaterOutputStream inflaterStream = new InflaterOutputStream(decompressedOutput)) {
inflaterStream.write(ZLIB_COMPRESSION_DEFAULT);
inflaterStream.write(ZLIB.ZLIB_COMPRESSION_DEFAULT);
idatStream.writeTo(inflaterStream);
inflaterStream.finish();
results = decompressedOutput.toByteArray();