Disable random seed update because SecureRandom is self-seeding with a better algorithm
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-15 03:34:34 +01:00
parent 14d2505dac
commit b81a7e65d2
2 changed files with 0 additions and 15 deletions

View File

@@ -1,12 +0,0 @@
package wtf.beatrice.hidekobot.runnables;
import wtf.beatrice.hidekobot.Cache;
public class RandomSeedTask implements Runnable
{
@Override
public void run() {
Cache.setRandomSeed(System.currentTimeMillis());
}
}