]
Ryan Emerson updated ISPN-5569:
-------------------------------
Status: Open (was: New)
NullPointerException on JCache.putAll(ConcurrentHashMap)
--------------------------------------------------------
Key: ISPN-5569
URL:
https://issues.jboss.org/browse/ISPN-5569
Project: Infinispan
Issue Type: Bug
Affects Versions: 7.2.2.Final
Reporter: Michael Gysel
Assignee: Ryan Emerson
Class {{org.infinispan.jcache.embedded.JCache<K, V>}}
{code:java}@Override
public void putAll(Map<? extends K, ? extends V> inputMap) {
checkNotClosed();
// spec required check
if (inputMap == null || inputMap.containsKey(null) || inputMap.containsValue(null))
{
throw new NullPointerException(
"inputMap is null or keys/values contain a null entry: " +
inputMap);
}
// more code
}
{code}