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.25 by dl, Mon Oct 7 10:54:23 2013 UTC vs.
Revision 1.26 by jsr166, Sun May 25 02:33:45 2014 UTC

# Line 170 | Line 170 | public class ThreadLocalRandom extends R
170  
171      /** Rarely-used holder for the second of a pair of Gaussians */
172      private static final ThreadLocal<Double> nextLocalGaussian =
173 <        new ThreadLocal<Double>();
173 >        new ThreadLocal<>();
174  
175      private static long mix64(long z) {
176          z = (z ^ (z >>> 33)) * 0xff51afd7ed558ccdL;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines