SteamWar/BungeeCore
Archiviert
13
2

Remove debug messages

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2021-02-05 07:55:22 +01:00
Ursprung 18cb65a28b
Commit cd7ee79cdc

Datei anzeigen

@ -41,7 +41,6 @@ import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.util.*; import java.util.*;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
public class TablistManager extends BasicListener { public class TablistManager extends BasicListener {
@ -187,7 +186,6 @@ public class TablistManager extends BasicListener {
i++; i++;
} }
}catch(IndexOutOfBoundsException | NullPointerException e){ }catch(IndexOutOfBoundsException | NullPointerException e){
ProxyServer.getInstance().getLogger().log(Level.WARNING, "Whaaa", e);
//Ignore IndexOutOfBoundsException //Ignore IndexOutOfBoundsException
//Ignore NPE, happens sometimes (only 1s long) when somebody is joining, server switching or disconnecting //Ignore NPE, happens sometimes (only 1s long) when somebody is joining, server switching or disconnecting
} }