diff --git a/src/main/java/com/gmail/nossr50/api/ChatAPI.java b/src/main/java/com/gmail/nossr50/api/ChatAPI.java index 61662c312..d1bdb3b5c 100644 --- a/src/main/java/com/gmail/nossr50/api/ChatAPI.java +++ b/src/main/java/com/gmail/nossr50/api/ChatAPI.java @@ -39,22 +39,6 @@ public final class ChatAPI { ChatManager.handlePartyChat(plugin, PartyManager.getParty(party), sender, sender, message); } - /** - * Send a message to all members of a party - *
- * This function is designed for API usage. - * - * @deprecated Replaced by sendPartyChat(Plugin, String, String, String) - * - * @param sender The name of the sender to display in the chat - * @param party The name of the party to send to - * @param message The message to send - */ - @Deprecated - public static void sendPartyChat(String sender, String party, String message) { - sendPartyChat(null, party, sender, sender, message); - } - /** * Send a message to administrators *
@@ -82,21 +66,6 @@ public final class ChatAPI { ChatManager.handleAdminChat(plugin, sender, sender, message); } - /** - * Send a message to administrators - *
- * This function is designed for API usage. - * - * @deprecated Replaced by sendAdminChat(Plugin, String, String) - * - * @param sender The name of the sender to display in the chat - * @param message The message to send - */ - @Deprecated - public static void sendAdminChat(String sender, String message) { - sendAdminChat(null, sender, sender, message); - } - /** * Check if a player is currently talking in party chat. *