mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Stub method for Math.random()
This commit is contained in:
@ -62,6 +62,10 @@ public final class Math {
|
||||
return (int) Math.floor(v + 0.5);
|
||||
}
|
||||
|
||||
public static double random() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public static native double floor(double v);
|
||||
|
||||
public static native double ceil(double v);
|
||||
|
Reference in New Issue
Block a user