Remove an irrelevant comment

.. because firedChannelActive is gone long ago
This commit is contained in:
Trustin Lee 2013-08-05 16:50:25 +09:00
parent 4d064d85df
commit 17b91f416d

View File

@ -764,10 +764,6 @@ final class DefaultChannelPipeline implements ChannelPipeline {
@Override
public ChannelPipeline fireChannelInactive() {
// Some implementations such as EmbeddedChannel can trigger inboundBufferUpdated()
// after deactivation, so it's safe not to revert the firedChannelActive flag here.
// Also, all known transports never get re-activated.
//firedChannelActive = false;
head.fireChannelInactive();
return this;
}