0

Removed unused debug function

This commit is contained in:
Pepich 2017-02-05 17:03:58 +01:00
parent a2b0f37589
commit 9ae59f42cf

View File

@ -20,7 +20,7 @@ import com.redstoner.modules.CoreModule;
/** The Debugger class, first Module to be loaded, responsible for debug interactions such as subscribing to method calls and getting field values on runtime.
*
* @author Pepich */
@Version(major = 1, minor = 0, revision = 3, compatible = -1)
@Version(major = 1, minor = 0, revision = 4, compatible = -1)
public final class Debugger implements CoreModule, Listener
{
private static Debugger instance;
@ -168,10 +168,4 @@ public final class Debugger implements CoreModule, Listener
Utils.sendMessage(sender, null, "YAY");
return true;
}
@Debugable
public static void sendMessage(CommandSender recipient, String message)
{
notifyMethod(recipient, message);
}
}