Erik created COLLECTIONS-522:
--------------------------------
Summary: Documentation example does not compile
Key: COLLECTIONS-522
URL: https://issues.apache.org/jira/browse/COLLECTIONS-522
Project: Commons Collections
Issue Type: Improvement
Components: List
Affects Versions: 4.0
Reporter: Erik
Priority: Trivial
There is an example in the javadoc of PredicatedList which doesn't compile:
// PredicatedList.java line 36 in the commons-collections4-4.0
List list = PredicatedList.decorate(new ArrayList(), NotNullPredicate.INSTANCE);
// The method decorate does not exist, I presume it has been renamed to:
List list = PredicatedList.predicatedList(new ArrayList(),
NotNullPredicate.INSTANCE);
--
This message was sent by Atlassian JIRA
(v6.2#6252)