1 2 3 4 5 6 7 8 9 10 11 12 13
package NET.worlds.core; public class Debug { public static final boolean ON = true; public static final boolean TRACEON = false; public static void LogDebug() { LogDebug(""); } public static synchronized void LogDebug(String string) { } }