diff --git a/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java b/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java index 899e3a256e..314ac838f2 100644 --- a/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java +++ b/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java @@ -53,10 +53,8 @@ import org.jboss.netty.channel.SimpleChannelHandler; *

Parent channel and its children

* * A parent channel is a channel which is supposed to accept incoming - * connections. It is created by this bootstrap's - * {@link #setPipelineFactory(ChannelPipelineFactory) pipelineFactory} or - * {@link #setPipeline(ChannelPipeline) pipeline} property via {@link #bind()} - * and {@link #bind(SocketAddress)}. + * connections. It is created by this bootstrap's {@link ChannelFactory} via + * {@link #bind()} and {@link #bind(SocketAddress)}. *

* Once successfully bound, the parent channel starts to accept incoming * connections, and the accepted connections becomes the children of the