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

Comparing jsr166/src/jsr166y/ThreadLocalRandom.java (file contents):
Revision 1.15 by jsr166, Tue Mar 15 19:47:02 2011 UTC vs.
Revision 1.16 by jsr166, Wed May 25 16:08:03 2011 UTC

# Line 34 | Line 34 | import java.util.Random;
34   */
35   public class ThreadLocalRandom extends Random {
36      // same constants as Random, but must be redeclared because private
37 <    private final static long multiplier = 0x5DEECE66DL;
38 <    private final static long addend = 0xBL;
39 <    private final static long mask = (1L << 48) - 1;
37 >    private static final long multiplier = 0x5DEECE66DL;
38 >    private static final long addend = 0xBL;
39 >    private static final long mask = (1L << 48) - 1;
40  
41      /**
42       * The random seed. We can't use super.seed.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines