Don't catch any exceptions in the underlying decoder in ProtocolLib.

This commit is contained in:
Kristian S. Stangeland 2013-12-08 19:44:38 +01:00
parent feae8dd400
commit 20524c1c3c

View File

@ -356,10 +356,10 @@ class ChannelInjector extends ByteToMessageDecoder {
@Override @Override
protected void decode(ChannelHandlerContext ctx, ByteBuf byteBuffer, List<Object> packets) throws Exception { protected void decode(ChannelHandlerContext ctx, ByteBuf byteBuffer, List<Object> packets) throws Exception {
try { byteBuffer.markReaderIndex();
byteBuffer.markReaderIndex(); DECODE_BUFFER.invoke(vanillaDecoder, ctx, byteBuffer, packets);
DECODE_BUFFER.invoke(vanillaDecoder, ctx, byteBuffer, packets);
try {
if (packets.size() > 0) { if (packets.size() > 0) {
Object input = packets.get(0); Object input = packets.get(0);
Class<?> packetClass = input.getClass(); Class<?> packetClass = input.getClass();