Skip to content

Commit

Permalink
Fix broken build
Browse files Browse the repository at this point in the history
caused by #2685
  • Loading branch information
mcmonkey4eva committed Nov 9, 2021
1 parent e7d3a95 commit 7314cec
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
}
}
}
Expand Down

0 comments on commit 7314cec

Please sign in to comment.