Clean up base package

This commit is contained in:
AsamK 2021-11-14 15:00:06 +01:00
parent 382d8d22d0
commit fc8b6d0fcb
60 changed files with 102 additions and 100 deletions

View file

@ -8,7 +8,7 @@ public class RandomUtils {
private static final ThreadLocal<SecureRandom> LOCAL_RANDOM = ThreadLocal.withInitial(() -> {
var rand = getSecureRandomUnseeded();
// Let the SecureRandom seed it self initially
// Let the SecureRandom seed itself initially
rand.nextBoolean();
return rand;