Reduced compression level to 3

Signed-off-by: TheMode <themode@outlook.fr>
This commit is contained in:
TheMode 2020-11-19 04:54:54 +01:00
parent f30330c59b
commit fae8e30272

View File

@ -33,7 +33,7 @@ public class PacketCompressor extends ByteToMessageCodec<ByteBuf> {
private final byte[] buffer = new byte[8192];
private final Deflater deflater = new Deflater();
private final Deflater deflater = new Deflater(3);
private final Inflater inflater = new Inflater();
public PacketCompressor(int threshold) {