mirror of
https://github.com/itHotL/PlayerStats.git
synced 2024-11-22 11:55:17 +01:00
Removed trailing enters
This commit is contained in:
parent
6253627846
commit
9a4ed4c3f6
@ -65,4 +65,4 @@ public class Main extends JavaPlugin {
|
||||
}
|
||||
this.getLogger().info("Disabled PlayerStats!");
|
||||
}
|
||||
}
|
||||
}
|
@ -67,4 +67,4 @@ public class ThreadManager {
|
||||
public static long getLastRecordedCalcTime() {
|
||||
return lastRecordedCalcTime;
|
||||
}
|
||||
}
|
||||
}
|
@ -20,4 +20,4 @@ public class ReloadCommand implements CommandExecutor {
|
||||
threadManager.startReloadThread(sender);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
@ -82,4 +82,4 @@ public class TabCompleter implements org.bukkit.command.TabCompleter {
|
||||
.filter(item -> item.toLowerCase().contains(currentArg.toLowerCase()))
|
||||
.collect(Collectors.toList());
|
||||
}
|
||||
}
|
||||
}
|
@ -271,4 +271,4 @@ public class ConfigHandler {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -53,4 +53,4 @@ public class ConfigUpdateHandler {
|
||||
configuration.set(path, newValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@ package com.gmail.artemis.the.gr8.playerstats.enums;
|
||||
|
||||
public enum DebugLevel {
|
||||
LOW, MEDIUM, HIGH
|
||||
}
|
||||
}
|
@ -2,5 +2,4 @@ package com.gmail.artemis.the.gr8.playerstats.enums;
|
||||
|
||||
public enum Target {
|
||||
PLAYER, SERVER, TOP
|
||||
}
|
||||
|
||||
}
|
@ -19,4 +19,4 @@ public class JoinListener implements Listener {
|
||||
threadManager.startReloadThread(null);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -106,4 +106,4 @@ public class LanguageKeyHandler {
|
||||
statNameKeys.put(Statistic.KILL_ENTITY, "killed");
|
||||
statNameKeys.put(Statistic.ENTITY_KILLED_BY, "killed_by");
|
||||
}
|
||||
}
|
||||
}
|
@ -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"));
|
||||
}
|
||||
}
|
||||
}
|
@ -74,4 +74,4 @@ public class ReloadAction extends RecursiveAction {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -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!");
|
||||
}
|
||||
}
|
||||
}
|
@ -75,4 +75,4 @@ public class TopStatAction extends RecursiveAction {
|
||||
} catch (NoSuchElementException ignored) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
@ -17,4 +17,4 @@ public class NumberFormatter {
|
||||
public static String format(long number) {
|
||||
return format.format(number);
|
||||
}
|
||||
}
|
||||
}
|
@ -59,4 +59,4 @@ public class OfflinePlayerHandler {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -11,4 +11,4 @@ public class UnixTimeHandler {
|
||||
long maxLastPlayed = System.currentTimeMillis() - lastPlayedLimit * 24 * 60 * 60 * 1000;
|
||||
return lastPlayedLimit == 0 || lastPlayed >= maxLastPlayed;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user