mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-04-04 11:06:20 +02:00
Clear trailing whitespaces in ISettings and Settings.
This commit is contained in:
parent
c9f1b0fdc5
commit
23e8498b47
@ -235,9 +235,9 @@ public interface ISettings extends IConf {
|
||||
boolean isNotifyNoNewMail();
|
||||
|
||||
boolean isDropItemsIfFull();
|
||||
|
||||
|
||||
boolean isLastMessageReplyRecipient();
|
||||
|
||||
|
||||
BigDecimal getMinimumPayAmount();
|
||||
|
||||
long getLastMessageReplyRecipientTimeout();
|
||||
@ -249,20 +249,20 @@ public interface ISettings extends IConf {
|
||||
boolean isWorldTimePermissions();
|
||||
|
||||
boolean isSpawnOnJoin();
|
||||
|
||||
|
||||
boolean isTeleportToCenterLocation();
|
||||
|
||||
|
||||
boolean isCommandCooldownsEnabled();
|
||||
|
||||
long getCommandCooldownMs(String label);
|
||||
|
||||
Entry<Pattern, Long> getCommandCooldownEntry(String label);
|
||||
|
||||
|
||||
boolean isCommandCooldownPersistent(String label);
|
||||
|
||||
boolean isNpcsInBalanceRanking();
|
||||
|
||||
NumberFormat getCurrencyFormat();
|
||||
|
||||
|
||||
List<EssentialsSign> getUnprotectedSignNames();
|
||||
}
|
||||
|
@ -1191,8 +1191,7 @@ public class Settings implements net.ess3.api.ISettings {
|
||||
public boolean isTeleportToCenterLocation() {
|
||||
return config.getBoolean("teleport-to-center", true);
|
||||
}
|
||||
|
||||
|
||||
|
||||
private Map<Pattern, Long> commandCooldowns;
|
||||
|
||||
private Map<Pattern, Long> _getCommandCooldowns() {
|
||||
@ -1276,17 +1275,18 @@ public class Settings implements net.ess3.api.ISettings {
|
||||
// TODO: enable per command cooldown specification for persistence.
|
||||
return config.getBoolean("command-cooldown-persistence", true);
|
||||
}
|
||||
|
||||
|
||||
private boolean npcsInBalanceRanking = false;
|
||||
|
||||
|
||||
private boolean _isNpcsInBalanceRanking() {
|
||||
return config.getBoolean("npcs-in-balance-ranking", false);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean isNpcsInBalanceRanking() {
|
||||
return npcsInBalanceRanking;
|
||||
}
|
||||
|
||||
private NumberFormat currencyFormat;
|
||||
|
||||
private NumberFormat _getCurrencyFormat() {
|
||||
|
Loading…
Reference in New Issue
Block a user