This commit is contained in:
ab 2012-10-10 12:51:32 +02:00
parent 7958a0cbf2
commit faa1961131

View File

@ -58,7 +58,6 @@ public class ServerBootstrap extends AbstractBootstrap<ServerBootstrap> {
private final Map<ChannelOption<?>, Object> childOptions = new LinkedHashMap<ChannelOption<?>, Object>(); private final Map<ChannelOption<?>, Object> childOptions = new LinkedHashMap<ChannelOption<?>, Object>();
private EventLoopGroup childGroup; private EventLoopGroup childGroup;
private ChannelHandler handler;
private ChannelHandler childHandler; private ChannelHandler childHandler;
/** /**
@ -153,8 +152,8 @@ public class ServerBootstrap extends AbstractBootstrap<ServerBootstrap> {
} }
ChannelPipeline p = future.channel().pipeline(); ChannelPipeline p = future.channel().pipeline();
if (handler != null) { if (handler() != null) {
p.addLast(handler); p.addLast(handler());
} }
p.addLast(acceptor); p.addLast(acceptor);