Remove seed member var
Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
This commit is contained in:
parent
04755c0a07
commit
1708347504
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue