Merge pull request #1118 from manuelgu/apilocationremoval

Remove unused API Location that got printed on startup
This commit is contained in:
Jesse Boyd 2016-05-14 21:46:20 +10:00
commit 4b962c35ab
2 changed files with 0 additions and 5 deletions

View File

@ -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<String, String> setting : settings.entrySet()) {
PS.log(C.PREFIX + String.format("&cKey: &6%s&c, Value: &6%s", setting.getKey(), setting.getValue()));
}

View File

@ -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
*/