ea61b5b5b3
Motivation: We use channel.unsafe().invoker().executor() in DefaultChannelPipeline.executorSafe(...) which is an unnecessary indirection to channel.eventLoop(). Modifications: Remove indirection by using channel.eventLoop(). Result: Cleaner code.