Skip to content

Commit

Permalink
Remove repeated modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
aherbert committed Sep 2, 2024
1 parent 88f7f97 commit a61f9e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ static int nextInt(UniformRandomProvider source,
long l = m & 0xffffffffL;
if (l < n) {
// 2^32 % n
final final long t = POW_32 % n;
final long t = POW_32 % n;
while (l < t) {
m = (source.nextInt() & 0xffffffffL) * n;
l = m & 0xffffffffL;
Expand Down

0 comments on commit a61f9e1

Please sign in to comment.