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

Comparing jsr166/src/test/extra166y/ApplyDemo.java (file contents):
Revision 1.2 by jsr166, Mon Nov 16 04:16:42 2009 UTC vs.
Revision 1.3 by jsr166, Mon Sep 27 19:15:15 2010 UTC

# Line 81 | Line 81 | public class ApplyDemo {
81       * Unsynchronized version of java.util.Random algorithm.
82       */
83      static final class Rand {
84 <        final static long multiplier = 0x5DEECE66DL;
85 <        final static long addend = 0xBL;
86 <        final static long mask = (1L << 48) - 1;
84 >        static final long multiplier = 0x5DEECE66DL;
85 >        static final long addend = 0xBL;
86 >        static final long mask = (1L << 48) - 1;
87          long seed;
88  
89          Rand(long s) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines