Code clean-up.

This commit is contained in:
Harald Kuhr 2013-11-20 20:06:16 +01:00
parent c7ecd7afc8
commit aa0a0f96e9

View File

@ -51,7 +51,6 @@ final class DeflateEncoder implements Encoder {
private final byte[] buffer = new byte[1024]; private final byte[] buffer = new byte[1024];
public DeflateEncoder() { public DeflateEncoder() {
// this(new Deflater());
this(new Deflater(Deflater.DEFAULT_COMPRESSION, true)); // TODO: Should we use "no wrap"? this(new Deflater(Deflater.DEFAULT_COMPRESSION, true)); // TODO: Should we use "no wrap"?
} }