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

Comparing jsr166/src/jsr166y/ForkJoinPool.java (file contents):
Revision 1.120 by jsr166, Tue Jan 31 01:32:25 2012 UTC vs.
Revision 1.121 by jsr166, Tue Jan 31 01:33:21 2012 UTC

# Line 458 | Line 458 | public class ForkJoinPool extends Abstra
458          h ^= h >>> 16; h *= 0x85ebca6b;
459          h ^= h >>> 13; h *= 0xc2b2ae35;
460          h ^= h >>> 16;
461 <        return (h == 0)? 1 : h; // ensure nonzero
461 >        return (h == 0) ? 1 : h; // ensure nonzero
462      }
463  
464      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines