Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I get a weird problem. Getting java.util.ConcurrentModificationException. But I'm not modifying the current collection. Please help.

Method Call

setAllAddress((List<AddressBean>) usrProfileResp.getAddressBeanList());
setShippingAddresses(getAllAddress());

Methods

public List<AddressBean> getAllAddress() {
    return allAddress;
}

public void setShippingAddresses(List<AddressTokenBean> shippingAddresses) {
        shippingAddresses = new ArrayList<AddressBean>();
        List<AddressBean> addresses = getAllAddress();
        if (addresses != null && addresses.size() > 0) { 
            for (AddressBean addr : addresses) { // EXCEPTION OCCURS HERE
                if (!Constants.BILLING_ADDRESS.equals(addr.getAddressType())) {                    
                    shippingAddresses.add(addr);                
                }
            }
        }
}
share|improve this question
Is shippingAddresses the same instance as addresses? Post getAllAddresses() and any more relevant code. – cklab Jun 28 '12 at 7:05
I have added the shipping address init in code. Please check. – Vanathi Jun 28 '12 at 7:06
1  
And getAllAddress()? It's starting to look like shippingAddresses is a class variable and getAllAddress() returns it. – cklab Jun 28 '12 at 7:07
1  
Please show your getAllAddress() implementation. – sp00m Jun 28 '12 at 7:10
There must be another thread modifying the collection returned by getAllAddress(). – hmjd Jun 28 '12 at 7:10
show 7 more comments

2 Answers

up vote 1 down vote accepted

The most likely explaination is that addresses and shippingAddresses refer to the same collection. You can check this in your debugger.

Does getAllAddresses() use shippingAddresses at all?

Are you sure this collection is not being modifed in another thread? Does this happen all the time or only occasionally?

share|improve this answer
Thanks for your response. But I do initialize shippingAddresses. :( – Vanathi Jun 28 '12 at 7:07
Not sure what that means, but I assume you are absolutely sure they are not the same object and you have checked in your debugger? – Peter Lawrey Jun 28 '12 at 7:08
@Peter..Its obvious..he is creating a new Collection – Ahmad Jun 28 '12 at 7:09
Without the source for getAllAdresses() it not obvious. – Peter Lawrey Jun 28 '12 at 7:11
@Ahmad obviously there is no bug then. ;) – Peter Lawrey Jun 28 '12 at 7:13
show 5 more comments

I don't really understood why you all guys consider shippingAddresses at all? Vanathi said that the exception occurs while attempting to iterate over the

List addresses = getAllAddress();

in the for-each loop.

So there should be a thread that changes the array referenced by 'addresses'. BTW does the exception happen during the fist iteration or

You implementation of 'getAllAddresses' is as follows:

public List getAllAddress() { return allAddress; }

So I conclude that 'allAddresses' is just a data member of some class. This class obviously allows concurrent modification( another thread? ) This is where you should put your efforts... Just IMO :)

Hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.