ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/DynamicFib.java
(Generate patch)

Comparing jsr166/src/test/loops/DynamicFib.java (file contents):
Revision 1.2 by jsr166, Mon Sep 20 20:42:37 2010 UTC vs.
Revision 1.4 by jsr166, Wed Jul 4 20:07:01 2012 UTC

# Line 21 | Line 21 | public final class DynamicFib extends Re
21              return;
22          }
23          for (int reps = 0; reps < 2; ++reps) {
24 <            ForkJoinPool pool = procs == 0? new ForkJoinPool() :
24 >            ForkJoinPool pool = (procs == 0) ? new ForkJoinPool() :
25                  new ForkJoinPool(procs);
26              for (int i = 0; i < 20; ++i)
27                  test(pool, num);
# Line 86 | Line 86 | public final class DynamicFib extends Re
86      }
87  
88   }
89

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines