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

Comparing jsr166/src/loops/LoopHelpers.java (file contents):
Revision 1.2 by peierls, Thu Dec 30 15:15:43 2004 UTC vs.
Revision 1.3 by jsr166, Fri Oct 22 05:18:30 2010 UTC

# Line 48 | Line 48 | class LoopHelpers {
48       */
49      public static int compute3(int x) {
50          int t = (x % 127773) * 16807 - (x / 127773) * 2836;
51 <        return (t > 0)? t : t + 0x7fffffff;
51 >        return (t > 0) ? t : t + 0x7fffffff;
52      }
53  
54      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines