refactor: rename static executors to uppercase snake case

This commit is contained in:
ChomeNS
2025-04-03 10:12:04 +07:00
parent 8ce017f7d0
commit 386bf69e7a
15 changed files with 33 additions and 33 deletions

View File

@@ -84,7 +84,7 @@ public class PlayersPlugin extends Bot.Listener implements TickPlugin.Listener {
public CompletableFuture<String> getPlayerIP (PlayerEntry target, boolean forceSeen) {
final CompletableFuture<String> outputFuture = new CompletableFuture<>();
DatabasePlugin.executorService.submit(() -> {
DatabasePlugin.EXECUTOR_SERVICE.submit(() -> {
if (!forceSeen) {
final String databaseIP = bot.playersDatabase.getPlayerIP(target.profile.getName());