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 9F194200B49 for ; Wed, 3 Aug 2016 09:35:13 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9DB59160A86; Wed, 3 Aug 2016 07:35:13 +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 E4F33160A64 for ; Wed, 3 Aug 2016 09:35:12 +0200 (CEST) Received: (qmail 90015 invoked by uid 500); 3 Aug 2016 07:35:12 -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 90006 invoked by uid 99); 3 Aug 2016 07:35:12 -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, 03 Aug 2016 07:35:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 01D95E3839; Wed, 3 Aug 2016 07:35:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: lburgazzoli@apache.org To: commits@camel.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: Fix typo Date: Wed, 3 Aug 2016 07:35:12 +0000 (UTC) archived-at: Wed, 03 Aug 2016 07:35:13 -0000 Repository: camel Updated Branches: refs/heads/camel-2.17.x 6a1b57ca9 -> 9a625aa18 Fix typo Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/9a625aa1 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/9a625aa1 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/9a625aa1 Branch: refs/heads/camel-2.17.x Commit: 9a625aa188596c09d72d9e022c720b60a6f32c77 Parents: 6a1b57c Author: lburgazzoli Authored: Wed Aug 3 09:31:51 2016 +0200 Committer: lburgazzoli Committed: Wed Aug 3 09:34:52 2016 +0200 ---------------------------------------------------------------------- .../org/apache/camel/component/jcache/JCacheEndpoint.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/9a625aa1/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheEndpoint.java b/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheEndpoint.java index b81ad00..ab052fd 100644 --- a/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheEndpoint.java +++ b/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheEndpoint.java @@ -32,24 +32,24 @@ public class JCacheEndpoint extends DefaultEndpoint { @UriPath(description = "the cache name") @Metadata(required = "true") private final String cacheName; - private final JCacheConfiguration cacheCnfiguration; + private final JCacheConfiguration cacheConfiguration; private final JCacheManager cacheManager; public JCacheEndpoint(String uri, JCacheComponent component, JCacheConfiguration configuration, String cacheName) { super(uri, component); this.cacheName = cacheName; - this.cacheCnfiguration = configuration; + this.cacheConfiguration = configuration; this.cacheManager = new JCacheManager<>( configuration, cacheName, - getCamelContext().getApplicationContextClassLoader(), - super.getCamelContext()); + component.getCamelContext().getApplicationContextClassLoader(), + component.getCamelContext()); } @Override public Producer createProducer() throws Exception { - return new JCacheProducer(this, cacheCnfiguration); + return new JCacheProducer(this, cacheConfiguration); } @Override