--- jsr166/src/test/loops/ListBash.java 2011/03/15 19:47:05 1.12 +++ jsr166/src/test/loops/ListBash.java 2011/12/05 04:08:46 1.13 @@ -174,7 +174,7 @@ public class ListBash { if (!all.equals(s)) fail("Failed to reconstruct ints from odds and evens."); - all = clone(odd, cl, synch); + all = clone(odd, cl, synch); ListIterator itAll = all.listIterator(all.size()); ListIterator itEven = even.listIterator(even.size()); while (itEven.hasPrevious()) { @@ -205,7 +205,7 @@ public class ListBash { Object o = it.next(); if (all.indexOf(o) != all.lastIndexOf(o)) fail("Apparent duplicate detected."); - if (all.subList(i, all.size()).indexOf(o) != 0) { + if (all.subList(i, all.size()).indexOf(o) != 0) { System.out.println("s0: " + all.subList(i, all.size()).indexOf(o)); fail("subList/indexOf is screwy."); }