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

Comparing jsr166/src/jdk7/java/util/Random.java (file contents):
Revision 1.5 by jsr166, Sun Jan 18 20:17:32 2015 UTC vs.
Revision 1.6 by jsr166, Sat Feb 7 23:29:18 2015 UTC

# Line 96 | Line 96 | class Random implements java.io.Serializ
96          // Different Sizes and Good Lattice Structure", 1999
97          for (;;) {
98              long current = seedUniquifier.get();
99 <            long next = current * 181783497276652981L;
99 >            long next = current * 1181783497276652981L;
100              if (seedUniquifier.compareAndSet(current, next))
101                  return next;
102          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines