blob: 0552b1b5678c3f655fd30585ff90095e7e7b7994 [file] [log] [blame] [raw]
package protocolsupport.protocol.pipeline.fake;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ByteToMessageDecoder;
import java.util.List;
public class FakeSplitter extends ByteToMessageDecoder {
@Override
protected void decode(ChannelHandlerContext arg0, ByteBuf arg1, List<Object> arg2) throws Exception {
}
}