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 <lburgazz...@gmail.com>
Authored: Tue May 10 19:13:57 2016 +0200
Committer: lburgazzoli <lburgazz...@gmail.com>
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 @@
 
   <artifactId>camel-ehcache</artifactId>
   <packaging>jar</packaging>
-  <name>Camel : Ehcache</name>
+  <name>Camel :: Ehcache</name>
   <description>Camel Ehcache support</description>
 
   <properties>

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<Object, Object> {
+public class EhcacheConsumer extends DefaultConsumer implements 
CacheEventListener<Object, Object> {
     private final EhcacheConfiguration configuration;
     private final EhcacheManager manager;
     private final Cache<Object, Object> 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<Object, Object> cache;

Reply via email to