author | timkelly |
Tue, 27 Jul 2010 11:49:52 -0500 | |
branch | C3_BUILDER_WORK |
changeset 1693 | de004e8bf5cb |
parent 1692 | 3980cf3d4074 |
child 1695 | 176858b7f249 |
core/com.nokia.cpp.utils.core/src/com/nokia/cpp/internal/api/utils/core/CacheUtils.java | file | annotate | diff | comparison | revisions |
--- 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(); } }