[
https://issues.apache.org/jira/browse/LANG-1243?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sebb updated LANG-1243:
-----------------------
Affects Version/s: 3.4
> Simplify ArrayUtils removeElements by using new decrementAndGet() method
> ------------------------------------------------------------------------
>
> Key: LANG-1243
> URL: https://issues.apache.org/jira/browse/LANG-1243
> Project: Commons Lang
> Issue Type: Improvement
> Affects Versions: 3.4
> Reporter: Sebb
>
> As the subject says - the new decrementAndGet() method can be used to
> simplify the following sequence:
> {code}
> count.decrement();
> if (count.intValue() == 0) {
> {code}
> as follows
> {code}
> if (count.decrementAndGet() == 0) {
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)