return null; // null value means no mapping is required
}
key = keyTransformer.value(key, newValue);
}
Entry<K, V> newEntry = new Entry<K, V>(key, newValue, (Entry<K, V>) o);
if (currentArray.compareAndSet(index, o, newEntry))
{
this.incrementSizeAndPossiblyResize(currentArray, length, o);
return null;
}
}