--- jsr166/src/jsr166y/ForkJoinTask.java 2010/11/24 10:50:38 1.72 +++ jsr166/src/jsr166y/ForkJoinTask.java 2010/11/28 21:21:03 1.73 @@ -261,7 +261,7 @@ public abstract class ForkJoinTask im private void externalAwaitDone() { if (status >= 0) { boolean interrupted = false; - synchronized(this) { + synchronized (this) { for (;;) { int s = status; if (s == 0) @@ -294,7 +294,7 @@ public abstract class ForkJoinTask im throw new InterruptedException(); if (status >= 0) { long startTime = timed ? System.nanoTime() : 0L; - synchronized(this) { + synchronized (this) { for (;;) { long nt; int s = status;