You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Fabian Lange (JIRA)" <ji...@apache.org> on 2010/06/24 22:03:52 UTC

[jira] Created: (COLLECTIONS-357) CollectionUtils.removeAll invokes wrong Listutils method

CollectionUtils.removeAll invokes wrong Listutils method
--------------------------------------------------------

                 Key: COLLECTIONS-357
                 URL: https://issues.apache.org/jira/browse/COLLECTIONS-357
             Project: Commons Collections
          Issue Type: Bug
          Components: Collection
    Affects Versions: 3.2
            Reporter: Fabian Lange
            Priority: Critical


{code}
    public static Collection removeAll(Collection collection, Collection remove) {
        return ListUtils.retainAll(collection, remove);
    }
{code}

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


[jira] Closed: (COLLECTIONS-357) CollectionUtils.removeAll invokes wrong Listutils method

Posted by "Henri Yandell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COLLECTIONS-357?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Henri Yandell closed COLLECTIONS-357.
-------------------------------------

    Fix Version/s: 4.0-beta-1
       Resolution: Fixed

Fixed in trunk.

> CollectionUtils.removeAll invokes wrong Listutils method
> --------------------------------------------------------
>
>                 Key: COLLECTIONS-357
>                 URL: https://issues.apache.org/jira/browse/COLLECTIONS-357
>             Project: Commons Collections
>          Issue Type: Bug
>          Components: Collection
>    Affects Versions: 3.2
>            Reporter: Fabian Lange
>            Priority: Critical
>             Fix For: 4.0-beta-1
>
>
> {code}
>     public static Collection removeAll(Collection collection, Collection remove) {
>         return ListUtils.retainAll(collection, remove);
>     }
> {code}

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