--- jsr166/src/test/loops/UncheckedLockLoops.java 2005/05/09 19:33:30 1.2 +++ jsr166/src/test/loops/UncheckedLockLoops.java 2009/08/01 22:12:59 1.3 @@ -183,7 +183,7 @@ public final class UncheckedLockLoops { private volatile int readBarrier; final int loop(int n) { int sum = 0; - int x = 0;; + int x = 0; while (n-- > 0) { int r1 = readBarrier; x = setValue(LoopHelpers.compute1(getValue())); @@ -199,7 +199,7 @@ public final class UncheckedLockLoops { private static class BuiltinLockLoop extends LockLoop { final int loop(int n) { int sum = 0; - int x = 0;; + int x = 0; while (n-- > 0) { synchronized(this) { x = setValue(LoopHelpers.compute1(getValue()));