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 6BC34200C3F for ; Wed, 22 Mar 2017 18:55:29 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 6A495160B86; Wed, 22 Mar 2017 17:55:29 +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 B09AC160B74 for ; Wed, 22 Mar 2017 18:55:28 +0100 (CET) Received: (qmail 79616 invoked by uid 500); 22 Mar 2017 17:55:27 -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 79606 invoked by uid 99); 22 Mar 2017 17:55:27 -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; Wed, 22 Mar 2017 17:55:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BA4C9DFE1E; Wed, 22 Mar 2017 17:55:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: zregvart@apache.org To: commits@camel.apache.org Message-Id: <57a757d9770b4b368bcddd3632276b9e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: CAMEL-11034 Undertow producer does not support ... Date: Wed, 22 Mar 2017 17:55:27 +0000 (UTC) archived-at: Wed, 22 Mar 2017 17:55:29 -0000 Repository: camel Updated Branches: refs/heads/master 49676b64f -> 82257c770 CAMEL-11034 Undertow producer does not support ... ...`https` This fixes checkstyle issue. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/82257c77 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/82257c77 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/82257c77 Branch: refs/heads/master Commit: 82257c770a25fcc49d1a386524a445e57303abcc Parents: 49676b6 Author: Zoran Regvart Authored: Wed Mar 22 18:55:18 2017 +0100 Committer: Zoran Regvart Committed: Wed Mar 22 18:55:18 2017 +0100 ---------------------------------------------------------------------- .../apache/camel/component/undertow/UndertowClientCallback.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/82257c77/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowClientCallback.java ---------------------------------------------------------------------- diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowClientCallback.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowClientCallback.java index 131255d..02fcc4c 100644 --- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowClientCallback.java +++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowClientCallback.java @@ -68,7 +68,7 @@ class UndertowClientCallback implements ClientCallback { * the exception to Camel {@link Exchange} and notifies Camel that the * exchange finished by calling {@link AsyncCallback#done(boolean)}. */ - class ErrorHandlingClientCallback implements ClientCallback { + final class ErrorHandlingClientCallback implements ClientCallback { private final Consumer consumer;