CollectionUtils.removeAll(Collection collection, Collection remove) calls
ListUtils.retainAll(collection, remove)
-----------------------------------------------------------------------------------------------------------------
Key: COLLECTIONS-358
URL: https://issues.apache.org/jira/browse/COLLECTIONS-358
Project: Commons Collections
Issue Type: Bug
Components: Collection
Affects Versions: 3.1
Environment: any
Reporter: Andreas Knees
Inside CollectionUtils.removeAll(Collection collection, Collection remove) the
retainAll() method of ListUtils is called in line 1122.
It should read ListUtils.removeAll(collection, remove) instead.
Workaround: use ListUtils.removeAll(Collection collection, Collection remove)
instead.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.