Skip to content

Commit

Permalink
Currently the system variable to chose which type of zlib decoder is …
Browse files Browse the repository at this point in the history
…being negated
  • Loading branch information
d-t-w authored and Norman Maurer committed Aug 27, 2013
1 parent 761e9ba commit 71acd96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 71acd96

Please sign in to comment.