Sebb created LANG-1243:
--------------------------
Summary: 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
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)