mirror of
https://github.com/kaboomserver/extras.git
synced 2024-11-27 09:55:36 -05:00
Remove debug messages
This commit is contained in:
parent
edad9deb59
commit
bb082a614d
3 changed files with 0 additions and 3 deletions
|
@ -25,7 +25,6 @@ class PlayerCommand implements Listener {
|
|||
final String command = event.getMessage();
|
||||
final UUID playerUuid = event.getPlayer().getUniqueId();
|
||||
final long millisDifference = System.currentTimeMillis() - main.commandMillisList.get(playerUuid);
|
||||
System.out.println("b " + command);
|
||||
|
||||
main.commandMillisList.put(playerUuid, System.currentTimeMillis());
|
||||
|
||||
|
|
|
@ -135,7 +135,6 @@ class PlayerConnection implements Listener {
|
|||
premiumCheck.setRequestMethod("HEAD");
|
||||
premiumCheck.setDefaultUseCaches(false);
|
||||
premiumCheck.setUseCaches(false);
|
||||
System.out.println(premiumCheck.getResponseCode());
|
||||
|
||||
if (premiumCheck.getResponseCode() == HttpsURLConnection.HTTP_OK) {
|
||||
final HttpsURLConnection skinConnection = (HttpsURLConnection) skinUrl.openConnection();
|
||||
|
|
|
@ -20,7 +20,6 @@ class ServerCommand implements Listener {
|
|||
void onServerCommand(ServerCommandEvent event) {
|
||||
final String[] arr = event.getCommand().split(" ");
|
||||
final String command = event.getCommand();
|
||||
System.out.println("a " + command);
|
||||
|
||||
if (main.consoleCommandBlacklist.contains(arr[0].toLowerCase())) {
|
||||
event.setCancelled(true);
|
||||
|
|
Loading…
Reference in a new issue