SteamWar/SpigotCore
Archiviert
13
0

Ignore removal NoSuchElement
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Lixfel 2022-01-08 08:36:55 +01:00
Ursprung 548de003d8
Commit 225bca0516

Datei anzeigen

@ -310,7 +310,13 @@ public class TinyProtocol {
}
// See ChannelInjector in ProtocolLib, line 590
channel.eventLoop().execute(() -> channel.pipeline().remove(handlerName));
channel.eventLoop().execute(() -> {
try {
channel.pipeline().remove(handlerName);
} catch (NoSuchElementException e) {
// ignore
}
});
}
public boolean hasInjected(Player player) {