Repository: camel
Updated Branches:
  refs/heads/master c5adfe634 -> e79c3aeac


Fixed typo in javadoc

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/1af2b8cc
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/1af2b8cc
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/1af2b8cc

Branch: refs/heads/master
Commit: 1af2b8ccbe3876394aa35c1ef2a68bf883520acf
Parents: cba6e2e
Author: Seiji Sogabe <s.sog...@gmail.com>
Authored: Tue Jul 29 15:40:13 2014 +0900
Committer: Seiji Sogabe <s.sog...@gmail.com>
Committed: Tue Jul 29 15:40:13 2014 +0900

----------------------------------------------------------------------
 .../apache/camel/component/netty/ClientPipelineFactory.java    | 2 +-
 .../apache/camel/component/netty/ServerPipelineFactory.java    | 6 +++---
 .../camel/component/netty/handlers/ServerChannelHandler.java   | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/1af2b8cc/components/camel-netty/src/main/java/org/apache/camel/component/netty/ClientPipelineFactory.java
----------------------------------------------------------------------
diff --git 
a/components/camel-netty/src/main/java/org/apache/camel/component/netty/ClientPipelineFactory.java
 
b/components/camel-netty/src/main/java/org/apache/camel/component/netty/ClientPipelineFactory.java
index 07f28e2..c48a320 100644
--- 
a/components/camel-netty/src/main/java/org/apache/camel/component/netty/ClientPipelineFactory.java
+++ 
b/components/camel-netty/src/main/java/org/apache/camel/component/netty/ClientPipelineFactory.java
@@ -34,7 +34,7 @@ public abstract class ClientPipelineFactory implements 
ChannelPipelineFactory {
      * 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/1af2b8cc/components/camel-netty/src/main/java/org/apache/camel/component/netty/ServerPipelineFactory.java
----------------------------------------------------------------------
diff --git 
a/components/camel-netty/src/main/java/org/apache/camel/component/netty/ServerPipelineFactory.java
 
b/components/camel-netty/src/main/java/org/apache/camel/component/netty/ServerPipelineFactory.java
index 87f837a..9bc3eec 100644
--- 
a/components/camel-netty/src/main/java/org/apache/camel/component/netty/ServerPipelineFactory.java
+++ 
b/components/camel-netty/src/main/java/org/apache/camel/component/netty/ServerPipelineFactory.java
@@ -20,7 +20,7 @@ import org.jboss.netty.channel.ChannelPipeline;
 import org.jboss.netty.channel.ChannelPipelineFactory;
 
 /**
- * Factory to create {@link ChannelPipeline} for clients, eg {@link 
NettyConsumer}.
+ * Factory to create {@link ChannelPipeline} for server, eg {@link 
NettyConsumer}.
  * <p/>
  * Implementators must support creating a new instance of this factory which 
is associated
  * to the given {@link NettyConsumer} using the {@link 
#createPipelineFactory(NettyConsumer)}
@@ -31,10 +31,10 @@ import org.jboss.netty.channel.ChannelPipelineFactory;
 public abstract class ServerPipelineFactory implements ChannelPipelineFactory {
 
     /**
-     * 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/1af2b8cc/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ServerChannelHandler.java
----------------------------------------------------------------------
diff --git 
a/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ServerChannelHandler.java
 
b/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ServerChannelHandler.java
index 6bafe7b..4554730 100644
--- 
a/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ServerChannelHandler.java
+++ 
b/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ServerChannelHandler.java
@@ -36,7 +36,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 SimpleChannelUpstreamHandler {
     // use NettyConsumer as logger to make it easier to read the logs as this 
is part of the consumer

Reply via email to