--- jsr166/src/test/loops/DequeBash.java 2014/12/31 17:00:58 1.10 +++ jsr166/src/test/loops/DequeBash.java 2015/01/15 18:34:19 1.11 @@ -22,7 +22,6 @@ public class DequeBash { static int nextHead = -1; static int size() { return nextTail - nextHead - 1; } - static int random(int bound) { int x = seed; int t = (x % 127773) * 16807 - (x / 127773) * 2836; @@ -154,7 +153,6 @@ public class DequeBash { deque.getLast() + " expecting " + (nextTail - 1)); } - static void randomOp(Deque deque) throws Exception { // Perform a random operation @@ -231,7 +229,6 @@ public class DequeBash { } } - private static void testEqual(Deque d1, Deque d2) throws Exception {