Removed trailing enters

This commit is contained in:
Artemis-the-gr8 2022-06-27 14:21:35 +02:00
parent 6253627846
commit 9a4ed4c3f6
18 changed files with 18 additions and 19 deletions

View File

@ -65,4 +65,4 @@ public class Main extends JavaPlugin {
}
this.getLogger().info("Disabled PlayerStats!");
}
}
}

View File

@ -67,4 +67,4 @@ public class ThreadManager {
public static long getLastRecordedCalcTime() {
return lastRecordedCalcTime;
}
}
}

View File

@ -20,4 +20,4 @@ public class ReloadCommand implements CommandExecutor {
threadManager.startReloadThread(sender);
return true;
}
}
}

View File

@ -82,4 +82,4 @@ public class TabCompleter implements org.bukkit.command.TabCompleter {
.filter(item -> item.toLowerCase().contains(currentArg.toLowerCase()))
.collect(Collectors.toList());
}
}
}

View File

@ -271,4 +271,4 @@ public class ConfigHandler {
}
}
}
}
}

View File

@ -53,4 +53,4 @@ public class ConfigUpdateHandler {
configuration.set(path, newValue);
}
}
}
}

View File

@ -2,4 +2,4 @@ package com.gmail.artemis.the.gr8.playerstats.enums;
public enum DebugLevel {
LOW, MEDIUM, HIGH
}
}

View File

@ -2,5 +2,4 @@ package com.gmail.artemis.the.gr8.playerstats.enums;
public enum Target {
PLAYER, SERVER, TOP
}
}

View File

@ -19,4 +19,4 @@ public class JoinListener implements Listener {
threadManager.startReloadThread(null);
}
}
}
}

View File

@ -106,4 +106,4 @@ public class LanguageKeyHandler {
statNameKeys.put(Statistic.KILL_ENTITY, "killed");
statNameKeys.put(Statistic.ENTITY_KILLED_BY, "killed_by");
}
}
}

View File

@ -65,4 +65,4 @@ public class PrideMessageFactory extends MessageFactory {
return !(config.useRainbowPrefix() || (config.useFestiveFormatting() && LocalDate.now().getMonth().equals(Month.JUNE))) ||
(isConsoleSender && Bukkit.getName().equalsIgnoreCase("CraftBukkit"));
}
}
}

View File

@ -74,4 +74,4 @@ public class ReloadAction extends RecursiveAction {
}
}
}
}
}

View File

@ -174,4 +174,4 @@ public class StatThread extends Thread {
}
throw new NullPointerException("The player you are trying to request either does not exist, or is not on the list for statistic lookups!");
}
}
}

View File

@ -75,4 +75,4 @@ public class TopStatAction extends RecursiveAction {
} catch (NoSuchElementException ignored) {
}
}
}
}

View File

@ -188,4 +188,4 @@ public class MyLogger {
public static void logTimeTakenDefault(String className, String methodName, long startTime) {
logger.info(className + " " + methodName + ": " + (System.currentTimeMillis() - startTime) + "ms");
}
}
}

View File

@ -17,4 +17,4 @@ public class NumberFormatter {
public static String format(long number) {
return format.format(number);
}
}
}

View File

@ -59,4 +59,4 @@ public class OfflinePlayerHandler {
return null;
}
}
}
}

View File

@ -11,4 +11,4 @@ public class UnixTimeHandler {
long maxLastPlayed = System.currentTimeMillis() - lastPlayedLimit * 24 * 60 * 60 * 1000;
return lastPlayedLimit == 0 || lastPlayed >= maxLastPlayed;
}
}
}