You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2015/10/24 15:42:28 UTC

[jira] [Created] (LANG-1178) ArrayUtils.removeAll(Object array, int... indices) should do the clone, not its callers

Sebb created LANG-1178:
--------------------------

             Summary: ArrayUtils.removeAll(Object array, int... indices) should do the clone, not its callers
                 Key: LANG-1178
                 URL: https://issues.apache.org/jira/browse/LANG-1178
             Project: Commons Lang
          Issue Type: Bug
            Reporter: Sebb


The method ArrayUtils.removeAll(Object array, int... indices) currently sorts the input indices array. Therefore the array needs to be cloned; this is currently done by the callers.

However the sort is an implementation detail of the method, so should be done by the method itself, not by the callers, which is fragile (easy to overlook when creating a new method) and unnecessary.

This would also allow the method to be more easily changed to a different implementation that does not need to sort the array (e.g. using BitSet)



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