Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DC1DA200B71 for ; Tue, 16 Aug 2016 08:57:59 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DACDB160A76; Tue, 16 Aug 2016 06:57:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2BDCB160AA8 for ; Tue, 16 Aug 2016 08:57:59 +0200 (CEST) Received: (qmail 56801 invoked by uid 500); 16 Aug 2016 06:57:58 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 56791 invoked by uid 99); 16 Aug 2016 06:57:58 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Aug 2016 06:57:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 12648E01BD; Tue, 16 Aug 2016 06:57:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Tue, 16 Aug 2016 06:57:58 -0000 Message-Id: <28fce7789b9446a7bc501030fa4fbc5e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] camel git commit: CAMEL-10244: Fix code to compile archived-at: Tue, 16 Aug 2016 06:58:00 -0000 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 Authored: Tue Aug 16 08:57:20 2016 +0200 Committer: Claus Ibsen 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) {