Skip to content

Commit

Permalink
Removed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksilassila committed Oct 24, 2020
1 parent 1889db2 commit 27f652b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/me/aleksilassila/islands/Islands.java
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ private boolean setupEconomy() {
if (getServer().getPluginManager().getPlugin("Vault") == null) return false;

RegisteredServiceProvider<Economy> rsp = getServer().getServicesManager().getRegistration(Economy.class);
getLogger().info("rsp null " + (rsp == null));

if (rsp == null) {
return false;
}
Expand All @@ -310,7 +310,6 @@ private boolean setupEconomy() {

for (String size : Objects.requireNonNull(getConfig().getConfigurationSection("islandSizes")).getKeys(false)) {
if (getConfig().getDouble("islandPrices." + size) > 0) {
getLogger().info("Added cost: " + getConfig().getInt("islandSizes." + size) + " for " + getConfig().getDouble("islandPrices." + size));
islandPrices.put(getConfig().getInt("islandSizes." + size), getConfig().getDouble("islandPrices." + size));
}
}
Expand Down

0 comments on commit 27f652b

Please sign in to comment.