3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-16 21:10:30 +01:00

Remove unnecessary slicing of uncompressed packets

Dieser Commit ist enthalten in:
Andrew Steinborn 2021-06-13 04:00:48 -04:00
Ursprung 90b72279dc
Commit 2184e72e98

Datei anzeigen

@ -50,7 +50,7 @@ public class MinecraftCompressDecoder extends MessageToMessageDecoder<ByteBuf> {
int claimedUncompressedSize = ProtocolUtils.readVarInt(in);
if (claimedUncompressedSize == 0) {
// This message is not compressed.
out.add(in.retainedSlice());
out.add(in.retain());
return;
}