--- jsr166/src/test/loops/Fib.java 2010/10/16 16:22:56 1.3 +++ jsr166/src/test/loops/Fib.java 2012/07/04 20:07:01 1.6 @@ -1,7 +1,7 @@ /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at - * http://creativecommons.org/licenses/publicdomain + * http://creativecommons.org/publicdomain/zero/1.0/ */ import java.util.concurrent.*; @@ -39,7 +39,7 @@ public final class Fib extends Recursive } for (int reps = 0; reps < 2; ++reps) { - ForkJoinPool g = procs == 0? new ForkJoinPool() : + ForkJoinPool g = (procs == 0) ? new ForkJoinPool() : new ForkJoinPool(procs); lastStealCount = g.getStealCount(); for (int i = 0; i < 20; ++i) { @@ -116,4 +116,3 @@ public final class Fib extends Recursive } } -