Fixed CS
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/81ddec97 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/81ddec97 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/81ddec97 Branch: refs/heads/camel-2.19.x Commit: 81ddec977a96370410862a2ee20eb690f8ccb480 Parents: d1719f2 Author: Andrea Cosentino <anco...@gmail.com> Authored: Thu Jul 13 08:19:58 2017 +0200 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Thu Jul 13 08:29:34 2017 +0200 ---------------------------------------------------------------------- camel-core/src/main/java/org/apache/camel/util/LRUCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/81ddec97/camel-core/src/main/java/org/apache/camel/util/LRUCache.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/util/LRUCache.java b/camel-core/src/main/java/org/apache/camel/util/LRUCache.java index db1c1b8..27300e7 100644 --- a/camel-core/src/main/java/org/apache/camel/util/LRUCache.java +++ b/camel-core/src/main/java/org/apache/camel/util/LRUCache.java @@ -73,7 +73,7 @@ public class LRUCache<K, V> implements Map<K, V>, RemovalListener<K, V>, Seriali */ public LRUCache(int initialCapacity, int maximumCacheSize) { //Do not stop service if ConcurrentLinkedHashMap try to evict entry when its max capacity is zero. - this(initialCapacity, maximumCacheSize, maximumCacheSize>0); + this(initialCapacity, maximumCacheSize, maximumCacheSize > 0); } /**