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-vfs.git
The following commit(s) were added to refs/heads/master by this push: new bcea7aa Remove unused exception. bcea7aa is described below commit bcea7aa072aa8276bf8ec2a0c4242186bc5549e3 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Feb 7 17:17:06 2021 -0500 Remove unused exception. --- .../apache/commons/vfs2/provider/ftp/MultipleConnectionTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftp/MultipleConnectionTestCase.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftp/MultipleConnectionTestCase.java index 838fa29..93eda48 100644 --- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftp/MultipleConnectionTestCase.java +++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ftp/MultipleConnectionTestCase.java @@ -32,7 +32,7 @@ import org.junit.Test; public class MultipleConnectionTestCase { @BeforeClass - public static void setUpClass() throws FtpException, IOException { + public static void setUpClass() throws FtpException { FtpProviderTestCase.setUpClass(AbstractVfsTestCase.getTestDirectory(), null); }