Here you can find the source of randRandom(Random random)
public static Random randRandom(Random random)
//package com.java2s; //License from project: MIT License import java.util.*; public class Main { public static Random randRandom(Random random) { return new Random(random.nextInt(Integer.MAX_VALUE)); }/* ww w . j a va 2s. c o m*/ }