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

Comparing jsr166/src/main/java/util/concurrent/ForkJoinPool.java (file contents):
Revision 1.87 by jsr166, Tue Jan 31 01:32:25 2012 UTC vs.
Revision 1.88 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