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.112 by dl, Thu Jan 26 18:15:12 2012 UTC vs.
Revision 1.113 by jsr166, Thu Jan 26 19:00:15 2012 UTC

# Line 1090 | Line 1090 | public class ForkJoinPool extends Abstra
1090       * method hashCode().
1091       */
1092      static final int hashThread(Thread t) {
1093 <        long id = (t == null)? 0L : t.getId(); // Use MurmurHash of thread id
1093 >        long id = (t == null) ? 0L : t.getId(); // Use MurmurHash of thread id
1094          int h = (int)id ^ (int)(id >>> 32);
1095          h ^= h >>> 16;
1096          h *= 0x85ebca6b;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines