mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Fix ms to ns conversion.
This commit is contained in:
parent
50ac08fce4
commit
9a1c6fe5b9
|
@ -106,7 +106,7 @@ public final class TSystem extends TObject {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static long nanoTime() {
|
public static long nanoTime() {
|
||||||
return currentTimeMillis() * 10000000;
|
return currentTimeMillis() * 1000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int identityHashCode(Object x) {
|
public static int identityHashCode(Object x) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user