delete no useful intermediate variables

delete no useful intermediate variables
This commit is contained in:
周岑 2017-02-06 11:41:24 +08:00 committed by Norman Maurer
parent e6b9cf4675
commit eb3ff4ae9c

View File

@ -184,8 +184,7 @@ abstract class AbstractChannelHandlerContext extends DefaultAttributeMap impleme
@Override
public ChannelHandlerContext fireChannelActive() {
final AbstractChannelHandlerContext next = findContextInbound();
invokeChannelActive(next);
invokeChannelActive(findContextInbound());
return this;
}