[ 
https://issues.apache.org/jira/browse/COLLECTIONS-370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tomofumi Kitano updated COLLECTIONS-370:
----------------------------------------

    Attachment: COLLECTIONS-370.patch

Created putIfNotNull and test method. Please take a look and any 
comments/feedback will be appreciated.

> 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
>         Attachments: COLLECTIONS-370.patch
>
>
> 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.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to