Clear trailing whitespaces in ISettings and Settings.

This commit is contained in:
Ali Moghnieh 2016-07-10 17:58:15 +01:00
parent c9f1b0fdc5
commit 23e8498b47
No known key found for this signature in database
GPG key ID: F09D3A1BAF2E6D70
2 changed files with 11 additions and 11 deletions

View file

@ -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() {