when adding a new row in an existing table with one row
like this:
Tr workingRow = (Tr) XmlUtils.deepCopy(existingRow);
tbl.getContent().add(workingRow);
and then:
tableElement.getContent().remove(existingRow);
everything works fine.
But if I don't remove the existingRow or add more rows then I have a java.util.ConcurrentModificationException.
Can you help me please?