You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Thomas Neidhart (JIRA)" <ji...@apache.org> on 2015/11/27 22:48:12 UTC

[jira] [Closed] (COLLECTIONS-554) NullPointerException in CollectionUtils.partition

     [ https://issues.apache.org/jira/browse/COLLECTIONS-554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thomas Neidhart closed COLLECTIONS-554.
---------------------------------------

> NullPointerException in CollectionUtils.partition
> -------------------------------------------------
>
>                 Key: COLLECTIONS-554
>                 URL: https://issues.apache.org/jira/browse/COLLECTIONS-554
>             Project: Commons Collections
>          Issue Type: Bug
>          Components: Collection
>    Affects Versions: 4.1
>            Reporter: M Kim
>            Priority: Minor
>
> NullPointerException (NPE) is not suitably handled in CollectionUtils.partition. With a nullFactory, partitions.get(numberOfPredicates) can be null at line partitions.get(numberOfPredicates).add(element);.
> Stack trace:
> {code}
> test(Test)java.lang.NullPointerException
>         at org.apache.commons.collections4.CollectionUtils.partition(CollectionUtils.java:1187)
>         at Test.test(Test.java:18)
> {code}
> Test case:
> {code}
> public void test() {
>   Collection input = CollectionUtils.permutations((java.util.Collection)new CircularFifoQueue(10));
>   Factory factory = FactoryUtils.nullFactory();
>   NullIsFalsePredicate p = new NullIsFalsePredicate(NullPredicate.nullPredicate());
>   Predicate[] predicates = p.getPredicates();
>   CollectionUtils.<java.lang.Object,java.util.Collection>partition((java.lang.Iterable)input, factory, predicates);
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)