--- jsr166/src/jsr166y/ForkJoinTask.java 2010/09/07 23:17:10 1.60 +++ jsr166/src/jsr166y/ForkJoinTask.java 2010/09/16 03:57:13 1.61 @@ -223,7 +223,7 @@ public abstract class ForkJoinTask im int s; // the odd construction reduces lock bias effects while ((s = status) >= 0) { try { - synchronized(this) { + synchronized (this) { if (UNSAFE.compareAndSwapInt(this, statusOffset, s,SIGNAL)) wait(); } @@ -243,7 +243,7 @@ public abstract class ForkJoinTask im int s; if ((s = status) >= 0) { try { - synchronized(this) { + synchronized (this) { if (UNSAFE.compareAndSwapInt(this, statusOffset, s,SIGNAL)) wait(millis, 0); } @@ -261,7 +261,7 @@ public abstract class ForkJoinTask im private void externalAwaitDone() { int s; while ((s = status) >= 0) { - synchronized(this) { + synchronized (this) { if (UNSAFE.compareAndSwapInt(this, statusOffset, s, SIGNAL)){ boolean interrupted = false; while (status >= 0) { @@ -698,7 +698,7 @@ public abstract class ForkJoinTask im long ms = nt / 1000000; int ns = (int) (nt % 1000000); try { - synchronized(this) { + synchronized (this) { if (status >= 0) wait(ms, ns); }