This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
commit 2599cba0bbb301ac84f1ff0ca6c1c5191fe8f4dc Author: Gary Gregory <[email protected]> AuthorDate: Mon Jul 21 10:51:05 2025 -0400 Remove unused exception --- src/test/java/org/apache/commons/io/EndianUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/io/EndianUtilsTest.java b/src/test/java/org/apache/commons/io/EndianUtilsTest.java index 3015c606f..b7cd538e4 100644 --- a/src/test/java/org/apache/commons/io/EndianUtilsTest.java +++ b/src/test/java/org/apache/commons/io/EndianUtilsTest.java @@ -44,7 +44,7 @@ void testEOFException() { } @Test - void testInvalidOffset() throws IOException { + void testInvalidOffset() { final byte[] bytes = {}; assertThrows(IllegalArgumentException.class, () -> EndianUtils.readSwappedInteger(bytes, 0));
