mirror of https://github.com/apache/jclouds.git
Avoid NPE in case value is null but contains return true.
This commit is contained in:
parent
405ca5648a
commit
0c38cd584a
|
@ -68,7 +68,7 @@ public class InputSupplierMap<K, V> extends AbstractMap<K, V> {
|
||||||
public V get(Object key) {
|
public V get(Object key) {
|
||||||
InputSupplier<V> value = toMap.get(key);
|
InputSupplier<V> value = toMap.get(key);
|
||||||
try {
|
try {
|
||||||
return (value != null || toMap.containsKey(key)) ? value.getInput() : null;
|
return value != null ? value.getInput() : null;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw Throwables.propagate(e);
|
throw Throwables.propagate(e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue