BenchmarkManager thread should be daemon

This commit is contained in:
TheMode 2021-05-08 04:30:06 +02:00
parent 40f52ba49e
commit b880788124

View File

@ -76,8 +76,8 @@ public final class BenchmarkManager {
stop = false;
}, MinecraftServer.THREAD_NAME_BENCHMARK, 0L);
}, MinecraftServer.THREAD_NAME_BENCHMARK);
thread.setDaemon(true);
thread.start();
this.enabled = true;