do not start new Thread too early
This commit is contained in:
parent
9fc6a600ed
commit
0b4e780347
@ -20,13 +20,13 @@ public final class AutomaticLogDeleter extends JavaPlugin {
|
||||
@Override
|
||||
public void onDisable() {
|
||||
|
||||
new Thread(() -> {
|
||||
FileConfiguration config = getConfig();
|
||||
if (config.getBoolean("also-delete-logs-on-shutdown")) {
|
||||
new Thread(() -> {
|
||||
deleteLogs();
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
}
|
||||
|
||||
public void deleteLogs() {
|
||||
File path = new File("logs");
|
||||
|
Loading…
Reference in New Issue
Block a user