Fixed some java doc typos of camel-netty4
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d58fd110 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d58fd110 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d58fd110 Branch: refs/heads/master Commit: d58fd1107cd1c165e94d9883c449e51a5750869e Parents: 167232d Author: Willem Jiang <willem.ji...@gmail.com> Authored: Tue Jul 29 15:08:34 2014 +0800 Committer: Willem Jiang <willem.ji...@gmail.com> Committed: Tue Jul 29 15:08:43 2014 +0800 ---------------------------------------------------------------------- .../org/apache/camel/component/netty4/ClientPipelineFactory.java | 2 +- .../org/apache/camel/component/netty4/ServerPipelineFactory.java | 4 ++-- .../camel/component/netty4/handlers/ServerChannelHandler.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/d58fd110/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ClientPipelineFactory.java ---------------------------------------------------------------------- diff --git a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ClientPipelineFactory.java b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ClientPipelineFactory.java index 415ecfe..318c6eb 100644 --- a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ClientPipelineFactory.java +++ b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ClientPipelineFactory.java @@ -35,7 +35,7 @@ public abstract class ClientPipelineFactory extends ChannelInitializer<Channel> * Creates a new {@link ClientPipelineFactory} using the given {@link NettyProducer} * * @param producer the associated producers - * @return the {@link ClientPipelineFactory} associated to ghe given producer. + * @return the {@link ClientPipelineFactory} associated to the given producer. */ public abstract ClientPipelineFactory createPipelineFactory(NettyProducer producer); http://git-wip-us.apache.org/repos/asf/camel/blob/d58fd110/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ServerPipelineFactory.java ---------------------------------------------------------------------- diff --git a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ServerPipelineFactory.java b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ServerPipelineFactory.java index 901c298..9d731e0 100644 --- a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ServerPipelineFactory.java +++ b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/ServerPipelineFactory.java @@ -33,10 +33,10 @@ import io.netty.channel.ChannelPipeline; public abstract class ServerPipelineFactory extends ChannelInitializer<Channel> { /** - * Creates a new {@link ClientPipelineFactory} using the given {@link NettyConsumer} + * Creates a new {@link ServerPipelineFactory} using the given {@link NettyConsumer} * * @param consumer the associated consumer - * @return the {@link ClientPipelineFactory} associated to ghe given consumer. + * @return the {@link ServerPipelineFactory} associated to the given consumer. */ public abstract ServerPipelineFactory createPipelineFactory(NettyConsumer consumer); http://git-wip-us.apache.org/repos/asf/camel/blob/d58fd110/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/handlers/ServerChannelHandler.java ---------------------------------------------------------------------- diff --git a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/handlers/ServerChannelHandler.java b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/handlers/ServerChannelHandler.java index a03a99e..0bb93fc 100644 --- a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/handlers/ServerChannelHandler.java +++ b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/handlers/ServerChannelHandler.java @@ -34,7 +34,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** - * Client handler which cannot be shared + * Server handler which cannot be shared */ public class ServerChannelHandler extends SimpleChannelInboundHandler<Object> { // use NettyConsumer as logger to make it easier to read the logs as this is part of the consumer