Remove redundant throws declarations

This commit is contained in:
Madhura Bhave
2017-12-29 11:59:27 -08:00
parent 1ab5b833af
commit 8102dc78cb
20 changed files with 48 additions and 64 deletions

View File

@@ -55,7 +55,7 @@ public abstract class TestJarCreator {
}
private static void writeNestedEntry(String name, boolean unpackNested,
JarOutputStream jarOutputStream) throws Exception, IOException {
JarOutputStream jarOutputStream) throws Exception {
JarEntry nestedEntry = new JarEntry(name);
byte[] nestedJarData = getNestedJarData();
nestedEntry.setSize(nestedJarData.length);