You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Pascal Schumacher (JIRA)" <ji...@apache.org> on 2016/05/28 11:17:13 UTC

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

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

Pascal Schumacher resolved LANG-1178.
-------------------------------------
    Resolution: Fixed

> 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
>          Components: lang.*
>    Affects Versions: 3.4
>            Reporter: Sebb
>            Assignee: Pascal Schumacher
>             Fix For: 3.5
>
>
> 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)