Fix documentation for ChannelHandlerContext#fireChannelReadComplete

Motivation:
Fix a minor documentation bug in
ChannelHandlerContext#fireChannelReadComplete.

Modifications:
ChannelHandlerContext#fireChannelReadComplete no longer references an
incorrect method in its javadoc.

Results:
Documentation is correct.
This commit is contained in:
ysammy 2014-12-12 09:27:22 -08:00 committed by Norman Maurer
parent 08684cb749
commit 39820ef303

View File

@ -225,7 +225,7 @@ public interface ChannelHandlerContext
ChannelHandlerContext fireChannelRead(Object msg);
/**
* Triggers an {@link ChannelInboundHandler#channelWritabilityChanged(ChannelHandlerContext)}
* Triggers an {@link ChannelInboundHandler#channelReadComplete(ChannelHandlerContext)}
* event to the next {@link ChannelInboundHandler} in the {@link ChannelPipeline}.
*/
ChannelHandlerContext fireChannelReadComplete();