Remove overridden next() method in EventLoop interface.

Motivation:
EventLoop overrides the next() method with the same signature of its
super class EventLoopGroup.

Modifications:
Remove the duplicate method declaration from the EventLoop interface.

Result:
Perhaps makes the API slightly more readable as there is one less
method.
This commit is contained in:
Daniel Bevenius 2014-03-23 16:19:37 +01:00 committed by Trustin Lee
parent 96656564dc
commit 5d141242c9

View File

@ -29,9 +29,6 @@ public interface EventLoop extends EventExecutor, EventLoopGroup {
@Override
EventLoopGroup parent();
@Override
EventLoop next();
/**
* Creates a new default {@link ChannelHandlerInvoker} implementation that uses this {@link EventLoop} to
* invoke event handler methods.