Closedown

This commit is contained in:
boccioli_m
2017-08-31 16:26:35 +02:00
parent 6d7f05f6e9
commit ad8d42aa75

View File

@@ -2492,14 +2492,14 @@ public class TestingList extends Panel {
while (it.hasNext()) {
Map.Entry pair = (Map.Entry)it.next();
System.out.println(pair.getKey() + " = " + pair.getValue());
it.remove(); // avoids a ConcurrentModificationException
//it.remove(); // avoids a ConcurrentModificationException
}
it = testParams.entrySet().iterator();
System.out.println("testParams: " + testParams.size());
while (it.hasNext()) {
Map.Entry pair = (Map.Entry)it.next();
System.out.println(pair.getKey() + " = " + pair.getValue());
it.remove(); // avoids a ConcurrentModificationException
//it.remove(); // avoids a ConcurrentModificationException
}
return testParams;
}