From 27827068cdafc63e664c4371ed602bc956576c64 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Mon, 11 Aug 2008 07:46:54 +0000 Subject: [PATCH] Fixed wrong explanation in ServerBootstrap --- .../java/org/jboss/netty/bootstrap/ServerBootstrap.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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