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

Comparing jsr166/src/main/java/util/concurrent/ThreadLocalRandom.java (file contents):
Revision 1.4 by jsr166, Thu Jun 3 01:03:13 2010 UTC vs.
Revision 1.5 by jsr166, Mon Sep 27 19:15:15 2010 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