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.33 by jsr166, Sun Jan 4 09:15:11 2015 UTC vs.
Revision 1.34 by jsr166, Wed Jan 7 02:40:31 2015 UTC

# Line 210 | Line 210 | public class ThreadLocalRandom extends R
210      final long nextSeed() {
211          Thread t; long r; // read and update per-thread seed
212          U.putLong(t = Thread.currentThread(), SEED,
213 <                       r = U.getLong(t, SEED) + GAMMA);
213 >                  r = U.getLong(t, SEED) + GAMMA);
214          return r;
215      }
216  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines