From deb34a0f8bf719b86aa68f9a242b94db78e9172b Mon Sep 17 00:00:00 2001 From: stroller Date: Sun, 13 Oct 2019 02:17:18 +0800 Subject: [PATCH] remove useless doc for 5.0 (#9546) Fix javadoc issues Motivation: Remove useless doc for 5.0 Modifications: Remove description for 5.0 Result: Useless doc will be removed. --- .../io/netty/channel/SimpleChannelInboundHandler.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/transport/src/main/java/io/netty/channel/SimpleChannelInboundHandler.java b/transport/src/main/java/io/netty/channel/SimpleChannelInboundHandler.java index ddc516e819..6fbdbded08 100644 --- a/transport/src/main/java/io/netty/channel/SimpleChannelInboundHandler.java +++ b/transport/src/main/java/io/netty/channel/SimpleChannelInboundHandler.java @@ -38,12 +38,6 @@ import io.netty.util.internal.TypeParameterMatcher; * Be aware that depending of the constructor parameters it will release all handled messages by passing them to * {@link ReferenceCountUtil#release(Object)}. In this case you may need to use * {@link ReferenceCountUtil#retain(Object)} if you pass the object to the next handler in the {@link ChannelPipeline}. - * - *

Forward compatibility notice

- *

- * Please keep in mind that {@link #channelRead0(ChannelHandlerContext, I)} will be renamed to - * {@code messageReceived(ChannelHandlerContext, I)} in 5.0. - *

*/ public abstract class SimpleChannelInboundHandler extends ChannelInboundHandlerAdapter { @@ -115,9 +109,6 @@ public abstract class SimpleChannelInboundHandler extends ChannelInboundHandl } /** - * Please keep in mind that this method will be renamed to - * {@code messageReceived(ChannelHandlerContext, I)} in 5.0. - * * Is called for each message of type {@link I}. * * @param ctx the {@link ChannelHandlerContext} which this {@link SimpleChannelInboundHandler}