--- jsr166/src/test/loops/IntegrateGamma.java 2010/10/16 16:22:57 1.3 +++ jsr166/src/test/loops/IntegrateGamma.java 2010/11/29 20:58:07 1.4 @@ -38,7 +38,7 @@ public class IntegrateGamma { return; } - ForkJoinPool g = procs == 0? new ForkJoinPool() : + ForkJoinPool g = (procs == 0) ? new ForkJoinPool() : new ForkJoinPool(procs); System.out.println("Integrating from " + start + " to " + end + " exponent: " + exp + " parallelism " + g.getParallelism());