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 8C86C2007D0 for ; Tue, 10 May 2016 19:15:51 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8A3B9160877; Tue, 10 May 2016 17:15:51 +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 D0D8A16098A for ; Tue, 10 May 2016 19:15:50 +0200 (CEST) Received: (qmail 69045 invoked by uid 500); 10 May 2016 17:15:50 -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 69036 invoked by uid 99); 10 May 2016 17:15:50 -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, 10 May 2016 17:15:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CF4B4DFE04; Tue, 10 May 2016 17:15:49 +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: CAMEL-9884 : remove final from Producer/Consumer class definition, fix typo in pom Date: Tue, 10 May 2016 17:15:49 +0000 (UTC) archived-at: Tue, 10 May 2016 17:15:51 -0000 Repository: camel Updated Branches: refs/heads/master 9a473f398 -> 2657ce788 CAMEL-9884 : remove final from Producer/Consumer class definition, fix typo in pom Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2657ce78 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2657ce78 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2657ce78 Branch: refs/heads/master Commit: 2657ce78877d8358f4ae686baf6f1f9a920f2f50 Parents: 9a473f3 Author: lburgazzoli Authored: Tue May 10 19:13:57 2016 +0200 Committer: lburgazzoli Committed: Tue May 10 19:13:57 2016 +0200 ---------------------------------------------------------------------- components/camel-ehcache/pom.xml | 2 +- .../java/org/apache/camel/component/ehcache/EhcacheConsumer.java | 2 +- .../java/org/apache/camel/component/ehcache/EhcacheProducer.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/2657ce78/components/camel-ehcache/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-ehcache/pom.xml b/components/camel-ehcache/pom.xml index c9ec2ab..2f66af7 100644 --- a/components/camel-ehcache/pom.xml +++ b/components/camel-ehcache/pom.xml @@ -27,7 +27,7 @@ camel-ehcache jar - Camel : Ehcache + Camel :: Ehcache Camel Ehcache support http://git-wip-us.apache.org/repos/asf/camel/blob/2657ce78/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheConsumer.java ---------------------------------------------------------------------- diff --git a/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheConsumer.java b/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheConsumer.java index 1129081..0098974 100644 --- a/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheConsumer.java +++ b/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheConsumer.java @@ -24,7 +24,7 @@ import org.ehcache.Cache; import org.ehcache.event.CacheEvent; import org.ehcache.event.CacheEventListener; -public final class EhcacheConsumer extends DefaultConsumer implements CacheEventListener { +public class EhcacheConsumer extends DefaultConsumer implements CacheEventListener { private final EhcacheConfiguration configuration; private final EhcacheManager manager; private final Cache cache; http://git-wip-us.apache.org/repos/asf/camel/blob/2657ce78/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheProducer.java ---------------------------------------------------------------------- diff --git a/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheProducer.java b/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheProducer.java index 1015c66..5967270 100644 --- a/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheProducer.java +++ b/components/camel-ehcache/src/main/java/org/apache/camel/component/ehcache/EhcacheProducer.java @@ -26,7 +26,7 @@ import org.apache.camel.NoSuchHeaderException; import org.apache.camel.impl.DefaultProducer; import org.ehcache.Cache; -public final class EhcacheProducer extends DefaultProducer { +public class EhcacheProducer extends DefaultProducer { private final EhcacheConfiguration configuration; private final EhcacheManager manager; private final Cache cache;