Checkstyle.

This commit is contained in:
Gilles 2015-12-28 18:18:25 +01:00
parent 8a35ca4f8e
commit 8d6d088622
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ public abstract class BaseRandomGenerator
int bits;
int val;
do {
bits = (nextInt() >>> 1);
bits = nextInt() >>> 1;
val = bits % n;
} while (bits - val + (n - 1) < 0);
return val;