Add method MapUtils.putIfNotNull
--------------------------------

                 Key: COLLECTIONS-370
                 URL: https://issues.apache.org/jira/browse/COLLECTIONS-370
             Project: Commons Collections
          Issue Type: New Feature
          Components: Map
    Affects Versions: 3.2
            Reporter: Tom Pasierb
            Priority: Minor


Add method MapUtils.putIfNotNull that adds the given value to the map only if 
it is not null.

Possible implementation:

public static <K, V> void putIfNotNull(Map<K, V> map, K key, V value) {
        if (value != null) {
                map.put(key, value);
        }
}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to