Removed System debug messages.

Added missing JsonTimerTask.java
This commit is contained in:
Jason Booth 2011-02-09 11:57:46 -06:00
parent fb01f6ecf7
commit 2f6930bc17
2 changed files with 72 additions and 4 deletions

View file

@ -96,8 +96,6 @@ public class DynmapPlugin extends JavaPlugin {
log.severe("Failed to start WebServer on " + bindAddress + ":" + port + "!");
}
}
else
System.out.println("WebServer Disabled");
if(configuration.getBoolean("jsonfile", false)) {
jsonConfig();
@ -105,8 +103,7 @@ public class DynmapPlugin extends JavaPlugin {
timer = new Timer();
timer.scheduleAtFixedRate(new JsonTimerTask(this, configuration), jsonInterval, jsonInterval);
}
else
System.out.println("JsonFile Writing Disabled");
registerEvents();
}