Currently the system variable to chose which type of zlib decoder is being negated

This commit is contained in:
Derek Troy-West 2013-08-27 16:23:06 +10:00 committed by Norman Maurer
parent 32deb2c22b
commit 6a4131c10f

View File

@ -29,7 +29,7 @@ public final class ZlibCodecFactory {
private static final boolean noJdkZlibDecoder;
static {
noJdkZlibDecoder = !SystemPropertyUtil.getBoolean("io.netty.noJdkZlibDecoder", true);
noJdkZlibDecoder = SystemPropertyUtil.getBoolean("io.netty.noJdkZlibDecoder", true);
logger.debug("-Dio.netty.noJdkZlibDecoder: {}", noJdkZlibDecoder);
}