You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Tomofumi Kitano (JIRA)" <ji...@apache.org> on 2011/04/18 09:13:05 UTC

[jira] [Updated] (COLLECTIONS-370) Add method MapUtils.putIfNotNull

     [ 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