if (shouldAddToMap(k, oldCH, numCopies, self)) state.put(k, ice.toInternalCacheValue());
}
CacheStore cacheStore = distributionManager.getCacheStoreForRehashing();
if (cacheStore != null) {
for (Object k: cacheStore.loadAllKeys(new ReadOnlyDataContainerBackedKeySet(dataContainer))) {
if (!state.containsKey(k) && shouldAddToMap(k, oldCH, numCopies, self)) {
InternalCacheValue v = loadValue(cacheStore, k);
if (v != null) state.put(k, v);
}
}