We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ef79ec commit 70bbc65Copy full SHA for 70bbc65
src/main/java/net/minecraftforge/launcher/Main.java
@@ -24,9 +24,9 @@
24
import java.util.zip.ZipEntry;
25
import java.util.zip.ZipFile;
26
27
-public class Main {
+public final class Main {
28
public static void main(String[] args) throws Throwable {
29
- long start = System.nanoTime();
+ long start = System.currentTimeMillis();
30
Launcher launcher;
31
try {
32
Log.capture();
@@ -36,7 +36,7 @@ public static void main(String[] args) throws Throwable {
36
throw e;
37
}
38
39
- long total = (System.nanoTime() - start) / 1_000_000;
+ long total = System.currentTimeMillis() - start;
40
if (Log.isCapturing()) {
41
Log.drop();
42
Log.INFO.print("Slime Launcher setup is up-to-date");
0 commit comments