Fix broken build

caused by #2685
This commit is contained in:
Alex 'mcmonkey' Goodwin 2021-11-08 17:40:12 -08:00
parent e7d3a95981
commit 7314cec13c
1 changed files with 4 additions and 1 deletions

View File

@ -31,7 +31,10 @@ public class EmptyChannel extends AbstractChannel {
if (major > 4 || minor > 1 || revision > 24) {
updatedNetty = true;
}
} catch (NumberFormatException | ArrayIndexOutOfBoundsException ignored) {
}
catch (ArrayIndexOutOfBoundsException ignored) {
}
catch (NumberFormatException ignored) {
}
}
}