Removed debug message

This commit is contained in:
Butzlabben 2019-02-11 16:37:16 +01:00
parent 21b30d489a
commit e5152bdbe6

View File

@ -21,7 +21,6 @@ public class UpdateInformations {
public static synchronized UpdateInformations getInformations() {
String json = callURL("https://zendilu.net/butzlabben/worldsystem/info.php?version=" + WorldSystem.getInstance().getDescription().getVersion());
System.out.println("JSON: " + json);
Gson gson = new GsonBuilder().create();
UpdateInformations ui = gson.fromJson(json, UpdateInformations.class);
return ui;