Fix typo in warning message.

This commit is contained in:
Daniel Darabos 2015-07-29 18:27:40 +02:00 committed by Norman Maurer
parent 148692705c
commit 2edcb80c49

View File

@ -82,7 +82,7 @@ public final class ThreadLocalRandom extends Random {
// Otherwise, generate one.
if (initialSeedUniquifier == 0) {
// Try to generate a real random number from /dev/random.
// Get from a different thread to avoid blocking indefinitely on a machine without much entrophy.
// Get from a different thread to avoid blocking indefinitely on a machine without much entropy.
final BlockingQueue<byte[]> queue = new LinkedBlockingQueue<byte[]>();
Thread generatorThread = new Thread("initialSeedUniquifierGenerator") {
@Override