Removed system out println
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4b3dbc61 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4b3dbc61 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4b3dbc61 Branch: refs/heads/camel-2.13.x Commit: 4b3dbc6160bb51817a69d4f576c85fdc1548c7d8 Parents: 7086096 Author: Claus Ibsen <davscl...@apache.org> Authored: Thu Aug 7 09:26:19 2014 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Thu Aug 7 09:27:53 2014 +0200 ---------------------------------------------------------------------- .../apache/camel/component/netty/handlers/ClientChannelHandler.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4b3dbc61/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ClientChannelHandler.java ---------------------------------------------------------------------- diff --git a/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ClientChannelHandler.java b/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ClientChannelHandler.java index f21391e..e0ddb9f 100644 --- a/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ClientChannelHandler.java +++ b/components/camel-netty/src/main/java/org/apache/camel/component/netty/handlers/ClientChannelHandler.java @@ -209,7 +209,6 @@ public class ClientChannelHandler extends SimpleChannelUpstreamHandler { // if textline enabled then covert to a String which must be used for textline if (producer.getConfiguration().isTextline()) { - System.out.println("body is " + body); body = producer.getContext().getTypeConverter().mandatoryConvertTo(String.class, exchange, body); }