Repository: camel Updated Branches: refs/heads/camel-2.17.x a2eb47e1e -> 7891367b1 refs/heads/master d19e01ffa -> 10cf614ef
CAMEL-10244: Fix code to compile Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/7891367b Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7891367b Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7891367b Branch: refs/heads/camel-2.17.x Commit: 7891367b1165ef2c1fbcc0b0fd42718526be7376 Parents: a2eb47e Author: Claus Ibsen <davscl...@apache.org> Authored: Tue Aug 16 08:57:20 2016 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue Aug 16 08:57:20 2016 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/camel/component/netty4/NettyProducer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/7891367b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyProducer.java ---------------------------------------------------------------------- diff --git a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyProducer.java b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyProducer.java index bb04fd3..908219d 100644 --- a/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyProducer.java +++ b/components/camel-netty4/src/main/java/org/apache/camel/component/netty4/NettyProducer.java @@ -229,7 +229,7 @@ public class NettyProducer extends DefaultAsyncProducer { return false; } - public void processWithConnectedChannel(final Exchange exchange, AsyncCallback callback, ChannelFuture channelFuture, Object body) { + public void processWithConnectedChannel(final Exchange exchange, final AsyncCallback callback, final ChannelFuture channelFuture, final Object body) { // remember channel so we can reuse it final Channel channel = channelFuture.channel(); if (getConfiguration().isReuseChannel() && exchange.getProperty(NettyConstants.NETTY_CHANNEL) == null) {