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 D1F94200B72 for ; Fri, 26 Aug 2016 13:17:44 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D05EA160AB6; Fri, 26 Aug 2016 11:17:44 +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 25393160AB0 for ; Fri, 26 Aug 2016 13:17:43 +0200 (CEST) Received: (qmail 96914 invoked by uid 500); 26 Aug 2016 11:17:43 -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 96905 invoked by uid 99); 26 Aug 2016 11:17:43 -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; Fri, 26 Aug 2016 11:17:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 27836E0200; Fri, 26 Aug 2016 11:17:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: acosentino@apache.org To: commits@camel.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: A simple refactoring following up to b2b45542cfc8860d345ed4cae1017250bfa9f61c Date: Fri, 26 Aug 2016 11:17:43 +0000 (UTC) archived-at: Fri, 26 Aug 2016 11:17:45 -0000 Repository: camel Updated Branches: refs/heads/master 8bae55b77 -> 884523e71 A simple refactoring following up to b2b45542cfc8860d345ed4cae1017250bfa9f61c Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/884523e7 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/884523e7 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/884523e7 Branch: refs/heads/master Commit: 884523e7143d4ad8d92f4d9e10b0c44c61d24a7c Parents: 8bae55b Author: Yoshiki Higo Authored: Thu Aug 25 15:56:12 2016 +0900 Committer: Andrea Cosentino Committed: Fri Aug 26 13:16:14 2016 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/processor/SendProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/884523e7/camel-core/src/main/java/org/apache/camel/processor/SendProcessor.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/processor/SendProcessor.java b/camel-core/src/main/java/org/apache/camel/processor/SendProcessor.java index 3588694..8aa1a02 100644 --- a/camel-core/src/main/java/org/apache/camel/processor/SendProcessor.java +++ b/camel-core/src/main/java/org/apache/camel/processor/SendProcessor.java @@ -82,7 +82,7 @@ public class SendProcessor extends ServiceSupport implements AsyncProcessor, Tra @Override public String toString() { - return "sendTo(" + destination + (pattern != null ? " " + pattern : "") + ")"; + return "sendTo(" + destination + ")"; } public String getId() {