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
The following commit(s) were added to refs/heads/master by this push: new 423e986 Remove unused exception. 423e986 is described below commit 423e986ea2194386a98e775c7dd2caa0c2e76c1d Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu May 13 08:59:43 2021 -0400 Remove unused exception. --- .../java/org/apache/commons/io/input/CharacterFilterReaderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/io/input/CharacterFilterReaderTest.java b/src/test/java/org/apache/commons/io/input/CharacterFilterReaderTest.java index c2efad7..cea2c6c 100644 --- a/src/test/java/org/apache/commons/io/input/CharacterFilterReaderTest.java +++ b/src/test/java/org/apache/commons/io/input/CharacterFilterReaderTest.java @@ -78,7 +78,7 @@ public class CharacterFilterReaderTest { } @Test - public void testReadFilteringEOF() throws IOException { + public void testReadFilteringEOF() { final StringReader input = new StringReader(STRING_FIXTURE); assertTimeoutPreemptively(Duration.ofMillis(500), () -> { try (StringBuilderWriter output = new StringBuilderWriter();