Closedown
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user