--- jsr166/src/test/loops/ConcurrentDequeLoops.java 2009/11/02 23:42:46 1.4 +++ jsr166/src/test/loops/ConcurrentDequeLoops.java 2009/11/03 01:04:02 1.6 @@ -72,7 +72,7 @@ public class ConcurrentDequeLoops { // transform it, and put back in. try { barrier.await(); - int l = (int)System.nanoTime(); + int l = (int) System.nanoTime(); int takes = 0; for (;;) { Integer item; @@ -118,7 +118,7 @@ public class ConcurrentDequeLoops { } static void oneRun(Class klass, int n, int items) throws Exception { - Deque q = (Deque)klass.newInstance(); + Deque q = (Deque) klass.newInstance(); LoopHelpers.BarrierTimer timer = new LoopHelpers.BarrierTimer(); CyclicBarrier barrier = new CyclicBarrier(n + 1, timer); totalItems = new AtomicInteger(n * items);