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.17 by jsr166, Thu Jul 18 18:21:23 2013 UTC vs.
Revision 1.18 by jsr166, Fri Jul 19 19:34:43 2013 UTC

# Line 173 | Line 173 | public class ThreadLocalRandom extends R
173       *
174       * @param least the least value returned
175       * @param bound the upper bound (exclusive)
176 +     * @return the next value
177       * @throws IllegalArgumentException if least greater than or equal
178       * to bound
178     * @return the next value
179       */
180      public int nextInt(int least, int bound) {
181          if (least >= bound)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines