Explicit boxing

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1023965 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-10-18 19:35:24 +00:00
parent bc16601016
commit 73623d108c

View File

@ -70,7 +70,7 @@ public class PredicateTransformer<T> implements Transformer<T, Boolean>, Seriali
* @return the transformed result
*/
public Boolean transform(T input) {
return iPredicate.evaluate(input);
return Boolean.valueOf(iPredicate.evaluate(input));
}
/**