Remove seed member var

Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
This commit is contained in:
Rahul Rudragoudar 2021-04-24 20:53:28 +05:30
parent 04755c0a07
commit 1708347504
No known key found for this signature in database
GPG Key ID: 0D2CE231A7287EBC

View File

@ -5,9 +5,7 @@ import java.util.Random;
public class HelperFunctions {
public static int seed;
private static Random random = new Random(seed);
private static Random random = new Random();
synchronized public static void setSeed(long seed){
random.setSeed(seed);