I have the folloing code in my android app:
/** * callback executed after fetching the data. */ public void OnPointsFetch(ArrayList result) {
You get this error typically when
You modify the collection directly while it is iterating over the collection
or even worse when
one threads modifies the collection, while another iterates over it.