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

Comparing jsr166/src/loops/ALoops.java (file contents):
Revision 1.4 by jsr166, Thu Sep 16 03:57:13 2010 UTC vs.
Revision 1.5 by jsr166, Fri Oct 22 05:18:30 2010 UTC

# Line 75 | Line 75 | public final class ALoops {
75  
76      private static int nextRandom(int x) {
77          int t = (x % 127773) * 16807 - (x / 127773) * 2836;
78 <        return (t > 0)? t : t + 0x7fffffff;
78 >        return (t > 0) ? t : t + 0x7fffffff;
79      }
80  
81  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines