mirror of
https://github.com/corda/corda.git
synced 2025-01-09 06:23:04 +00:00
8 lines
124 B
Java
8 lines
124 B
Java
|
package java.util;
|
||
|
|
||
|
public class Random {
|
||
|
public int nextInt() {
|
||
|
return (int)(Math.random()*Integer.MAX_VALUE);
|
||
|
}
|
||
|
}
|