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

Comparing jsr166/src/jsr166y/ForkJoinWorkerThread.java (file contents):
Revision 1.23 by dl, Fri Jul 31 16:27:08 2009 UTC vs.
Revision 1.24 by jsr166, Fri Jul 31 19:52:39 2009 UTC

# Line 317 | Line 317 | public class ForkJoinWorkerThread extend
317      private static int xorShift(int r) {
318          r ^= (r << 13);
319          r ^= (r >>> 17);
320 <        return r ^ (r << 5);
320 >        return r ^ (r << 5);
321      }
322  
323      // Lifecycle methods

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines