Fix typo in previous commit

This commit is contained in:
md_5 2021-06-13 11:23:54 +10:00
parent c57bf61114
commit a25c2b325b
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -31,7 +31,7 @@ public class PacketDecompressor extends MessageToMessageDecoder<ByteBuf>
int size = DefinedPacket.readVarInt( in );
if ( size == 0 )
{
out.add( in );
out.add( in.retain() );
} else
{
ByteBuf decompressed = ctx.alloc().directBuffer();