--
You received this message because you are subscribed to the Google Groups "testng-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to testng-users...@googlegroups.com.
To post to this group, send email to testng...@googlegroups.com.
Visit this group at http://groups.google.com/group/testng-users.
For more options, visit https://groups.google.com/d/optout.
Also, note that ConcurrentModificationException is usually not a multithreading problem but caused by trying to iterate on a collection while an iteration is already happening (which can happen on a single thread). It doesn’t seem to be the case here, though, after a quick glance at the code (or I missed it).