Description
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);