aboutsummaryrefslogtreecommitdiffstats
path: root/abi-check-plugin
diff options
context:
space:
mode:
authorIlpo Ruotsalainen <ilpo.ruotsalainen@oath.com>2018-11-30 15:32:48 +0100
committerIlpo Ruotsalainen <ilpo.ruotsalainen@oath.com>2018-11-30 15:32:48 +0100
commit301d58138c74799251467920fe3e9a7b86b3ae7f (patch)
tree41102b88c317d3d28e8dad77f47f6dfb4fe9375d /abi-check-plugin
parent44cefe4499786e2df0381ad183c0c7cda40dd63e (diff)
Remove exception never thrown.
Diffstat (limited to 'abi-check-plugin')
-rw-r--r--abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java b/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java
index 24ebe3c076c..23cb227b590 100644
--- a/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java
+++ b/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java
@@ -16,7 +16,7 @@ import java.util.jar.JarFile;
public abstract class ClassFileTree implements AutoCloseable {
- public static ClassFileTree fromJar(JarFile jarFile) throws IOException {
+ public static ClassFileTree fromJar(JarFile jarFile) {
Map<String, Package> rootPackages = new HashMap<>();
Enumeration<JarEntry> jarEntries = jarFile.entries();