# HG changeset patch # User timkelly # Date 1280249392 18000 # Node ID de004e8bf5cb9c4a2e22da9c68b3cbe08350d3da # Parent 3980cf3d4074e17645614d7c1a91f90cd6867420 fix small glitch with clearing sbs cache on rescan diff -r 3980cf3d4074 -r de004e8bf5cb core/com.nokia.cpp.utils.core/src/com/nokia/cpp/internal/api/utils/core/CacheUtils.java --- a/core/com.nokia.cpp.utils.core/src/com/nokia/cpp/internal/api/utils/core/CacheUtils.java Tue Jul 27 11:13:38 2010 -0500 +++ b/core/com.nokia.cpp.utils.core/src/com/nokia/cpp/internal/api/utils/core/CacheUtils.java Tue Jul 27 11:49:52 2010 -0500 @@ -105,7 +105,7 @@ public void removeCache(String identifier) { CacheEntry cache = caches.get(identifier); if (cache != null) { - caches.remove(cache); + caches.remove(identifier); cache.delete(); } }