--- jsr166/src/test/loops/ListBash.java 2005/11/28 15:40:56 1.5 +++ jsr166/src/test/loops/ListBash.java 2009/10/29 23:09:07 1.6 @@ -94,7 +94,7 @@ public class ListBash { sum -= (s2.get(k)).intValue(); } if (sum == 0) System.out.print(" "); - } + } static void sets(List s1, List s2) { List intersection = clone(s1, cl,synch);intersection.retainAll(s2); @@ -159,7 +159,7 @@ public class ListBash { while(it.hasNext()) if((it.next()).intValue() % 2 == 1) fail("Failed to remove all odd nubmers."); - + for (int i=0; i<(listSize/2); i++) odd.remove(i); for (int i=0; i<(listSize/2); i++) { @@ -173,7 +173,7 @@ public class ListBash { all.add(2*i, even.get(i)); if (!all.equals(s)) fail("Failed to reconstruct ints from odds and evens."); - + all = clone(odd, cl, synch); ListIterator itAll = all.listIterator(all.size()); ListIterator itEven = even.listIterator(even.size());