Skip to content

Commit

Permalink
Fixed bug that regressed TLR.doubles()
Browse files Browse the repository at this point in the history
  • Loading branch information
kabutz committed Feb 1, 2023
1 parent bc750f7 commit 054e4e7
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -437,6 +437,10 @@ public int nextInt() {
public long nextLong() {
return ThreadLocalRandom.current().nextLong();
}

public double nextDouble() {
return ThreadLocalRandom.current().nextDouble();
}
}

/**
Expand Down

0 comments on commit 054e4e7

Please sign in to comment.