--- jsr166/src/jsr166y/ForkJoinWorkerThread.java 2010/11/23 06:21:54 1.61 +++ jsr166/src/jsr166y/ForkJoinWorkerThread.java 2010/11/29 20:58:06 1.62 @@ -357,7 +357,7 @@ public class ForkJoinWorkerThread extend */ protected void onStart() { int rs = seedGenerator.nextInt(); - seed = rs == 0? 1 : rs; // seed must be nonzero + seed = (rs == 0) ? 1 : rs; // seed must be nonzero // Allocate name string and arrays in this thread String pid = Integer.toString(pool.getPoolNumber());