Remove debug messages

This commit is contained in:
mathiascode 2019-09-17 19:03:38 +03:00
parent edad9deb59
commit bb082a614d
3 changed files with 0 additions and 3 deletions

View file

@ -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());

View file

@ -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();

View file

@ -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);