Update Server interface to remove depreceated methods

This commit is contained in:
md_5
2013-03-07 20:52:19 +11:00
parent 0afc52c130
commit 0f9cc76633
2 changed files with 8 additions and 37 deletions

View File

@@ -24,14 +24,4 @@ public interface Server extends Connection
* @param data the data to send
*/
public abstract void sendData(String channel, byte[] data);
/**
* Asynchronously gets the current player count on this server.
*
* @param callback the callback to call when the count has been retrieved.
* @deprecated use the corresponding method in {@link ServerInfo} for
* clarity
*/
@Deprecated
public abstract void ping(Callback<ServerPing> callback);
}