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-bcel.git
commit 2bf42c4134161319c82227807aab8d4903fd060e Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun May 1 14:19:05 2022 -0400 Remove unused exception from signature. --- src/main/java/org/apache/bcel/util/ModularRuntimeImage.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/org/apache/bcel/util/ModularRuntimeImage.java b/src/main/java/org/apache/bcel/util/ModularRuntimeImage.java index 282c8f5e..f362865b 100644 --- a/src/main/java/org/apache/bcel/util/ModularRuntimeImage.java +++ b/src/main/java/org/apache/bcel/util/ModularRuntimeImage.java @@ -50,11 +50,8 @@ public class ModularRuntimeImage implements Closeable { /** * Constructs a default instance. - * - * @throws IOException - * an I/O error occurs accessing the file system */ - public ModularRuntimeImage() throws IOException { + public ModularRuntimeImage() { this(null, FileSystems.getFileSystem(URI.create("jrt:/"))); }