x
This commit is contained in:
parent
7958a0cbf2
commit
faa1961131
@ -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);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user