Index: src/org/jgroups/blocks/LazyRemovalCache.java =================================================================== --- src/org/jgroups/blocks/LazyRemovalCache.java (revision 1.4) +++ src/org/jgroups/blocks/LazyRemovalCache.java Wed Apr 21 14:41:35 CEST 2010 @@ -127,6 +127,14 @@ } } } + + // now make sure that all elements in keys have removable=false + for(K key: keys) { + Entry val=map.get(key); + if(val != null && val.removable) + val.removable=false; + } + checkMaxSizeExceeded(); }