From 72096db8d6d68992dbf5d9a24c44302ff945e4ef Mon Sep 17 00:00:00 2001 From: manuelgu Date: Sat, 14 May 2016 12:33:52 +0200 Subject: [PATCH] Remove unused API Location that got printed on startup --- Core/src/main/java/com/intellectualcrafters/plot/PS.java | 1 - .../java/com/intellectualcrafters/plot/config/Settings.java | 4 ---- 2 files changed, 5 deletions(-) diff --git a/Core/src/main/java/com/intellectualcrafters/plot/PS.java b/Core/src/main/java/com/intellectualcrafters/plot/PS.java index 5d71d20df..8239e578e 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/PS.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/PS.java @@ -2182,7 +2182,6 @@ public class PS { settings.put("Auto Clear Enabled", "" + Settings.AUTO_CLEAR); settings.put("Auto Clear Days", "" + Settings.AUTO_CLEAR_DAYS); settings.put("Schematics Save Path", "" + Settings.SCHEMATIC_SAVE_PATH); - settings.put("API Location", "" + Settings.API_URL); for (Entry setting : settings.entrySet()) { PS.log(C.PREFIX + String.format("&cKey: &6%s&c, Value: &6%s", setting.getKey(), setting.getValue())); } diff --git a/Core/src/main/java/com/intellectualcrafters/plot/config/Settings.java b/Core/src/main/java/com/intellectualcrafters/plot/config/Settings.java index 909404670..242700b29 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/config/Settings.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/config/Settings.java @@ -137,10 +137,6 @@ public class Settings { public static int AUTO_CLEAR_DAYS = 360; public static int CLEAR_THRESHOLD = 1; public static int CLEAR_INTERVAL = 120; - /** - * API Location - */ - public static String API_URL = "http://www.intellectualsites.com/minecraft.php"; /** * Use the custom API */