Forgot to remove "else"

This commit is contained in:
Adrian Bergqvist 2022-11-24 20:02:56 +01:00
parent 97f1d2b493
commit 7ecb77dd74
No known key found for this signature in database
GPG Key ID: FAE7D8EDE225E686

View File

@ -33,9 +33,8 @@ public class FML2CRPMResetCompleteDecoder extends ChannelInboundHandlerAdapter {
return; return;
} }
} catch (Exception ignored) {} } catch (Exception ignored) {}
} else {
buf.readerIndex(originalReaderIndex);
} }
buf.readerIndex(originalReaderIndex);
} }
ctx.fireChannelRead(msg); ctx.fireChannelRead(msg);
} }