You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2015/04/01 04:56:29 UTC

camel git commit: Clean up the component document of camel-netty

Repository: camel
Updated Branches:
  refs/heads/master 10b4796bd -> 0fe960c97


Clean up the component document of camel-netty


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

Branch: refs/heads/master
Commit: 0fe960c97abc3901bc73914c0c1cc8e6029077e2
Parents: 10b4796
Author: Willem Jiang <wi...@gmail.com>
Authored: Wed Apr 1 10:55:57 2015 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Wed Apr 1 10:56:05 2015 +0800

----------------------------------------------------------------------
 .../apache/camel/component/netty4/NettyConfiguration.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/0fe960c9/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyConfiguration.java
----------------------------------------------------------------------
diff --git a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyConfiguration.java b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyConfiguration.java
index 7fbe1d8..bab5762 100644
--- a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyConfiguration.java
+++ b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyConfiguration.java
@@ -58,7 +58,7 @@ public class NettyConfiguration extends NettyServerBootstrapConfiguration implem
     private String encoding;
     private List<ChannelHandler> encoders = new ArrayList<ChannelHandler>();
     private List<ChannelHandler> decoders = new ArrayList<ChannelHandler>();
-    @UriParam(defaultValue = "false")
+    @UriParam
     private boolean disconnect;
     @UriParam(defaultValue = "true")
     private boolean lazyChannelCreation = true;
@@ -90,11 +90,11 @@ public class NettyConfiguration extends NettyServerBootstrapConfiguration implem
     private long producerPoolMinEvictableIdle = 5 * 60 * 1000L;
     @UriParam(defaultValue = "true")
     private boolean producerPoolEnabled = true;
-    @UriParam(defaultValue = "false")
+    @UriParam
     private boolean udpConnectionlessSending;
-    @UriParam(defaultValue = "false")
+    @UriParam
     private boolean clientMode;
-    @UriParam(defaultValue = "false")
+    @UriParam
     private boolean useByteBuf;