updated Random() to SecureRandom() (#1670)

* updated Random() to SecureRandom()

* batch 2 of SecureRandom updates
This commit is contained in:
Subhrodip Mohanta
2021-03-06 16:56:02 +05:30
committed by GitHub
parent c150871a94
commit b423002e6c
15 changed files with 32 additions and 31 deletions

View File

@ -23,7 +23,7 @@
package com.iluwatar.gameloop;
import java.util.Random;
import java.security.SecureRandom;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -80,7 +80,7 @@ public abstract class GameLoop {
*/
protected void processInput() {
try {
var lag = new Random().nextInt(200) + 50;
var lag = new SecureRandom().nextInt(200) + 50;
Thread.sleep(lag);
} catch (InterruptedException e) {
logger.error(e.getMessage());