Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Duplicate
-
3.2
-
None
-
None
-
None
Description
CollectionUtils.removeAll() calls ListUtils.retainAll(). I believe it should actually be
public static Collection removeAll(Collection collection, Collection remove) {
return ListUtils.removeAll(collection, remove);
}
Attachments
Issue Links
- duplicates
-
COLLECTIONS-219 The CollectionUtils.removeAll method calls the ListUtils.retainAll method instead of the ListUtils.removeAll method.
- Closed