mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-17 23:44:48 +00:00
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:
parent
bc16601016
commit
73623d108c
@ -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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user