diff --git a/spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/Repackager.java b/spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/Repackager.java index 2e2e7cf26c..0d3acaf16e 100644 --- a/spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/Repackager.java +++ b/spring-boot-tools/spring-boot-loader-tools/src/main/java/org/springframework/boot/loader/tools/Repackager.java @@ -172,7 +172,6 @@ public class Repackager { try { final List unpackLibraries = new ArrayList(); final List standardLibraries = new ArrayList(); - libraries.doWithLibraries(new LibraryCallback() { @Override public void library(Library library) throws IOException { diff --git a/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/RepackagerTests.java b/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/RepackagerTests.java index 92d24e135e..e2ef289a6b 100644 --- a/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/RepackagerTests.java +++ b/spring-boot-tools/spring-boot-loader-tools/src/test/java/org/springframework/boot/loader/tools/RepackagerTests.java @@ -432,7 +432,7 @@ public class RepackagerTests { @Test public void unpackLibrariesTakePrecedenceOverExistingSourceEntries() throws Exception { - final TestJarFile nested = new TestJarFile(this.temporaryFolder); + TestJarFile nested = new TestJarFile(this.temporaryFolder); nested.addClass("a/b/C.class", ClassWithoutMainMethod.class); final File nestedFile = nested.getFile(); this.testJarFile.addFile("lib/" + nestedFile.getName(), nested.getFile()); @@ -447,7 +447,6 @@ public class RepackagerTests { } }); - JarFile jarFile = new JarFile(file); try { assertThat(jarFile.getEntry("lib/" + nestedFile.getName()).getComment(), @@ -461,16 +460,14 @@ public class RepackagerTests { @Test public void existingSourceEntriesTakePrecedenceOverStandardLibraries() throws Exception { - final TestJarFile nested = new TestJarFile(this.temporaryFolder); + TestJarFile nested = new TestJarFile(this.temporaryFolder); nested.addClass("a/b/C.class", ClassWithoutMainMethod.class); final File nestedFile = nested.getFile(); this.testJarFile.addFile("lib/" + nestedFile.getName(), nested.getFile()); this.testJarFile.addClass("A.class", ClassWithMainMethod.class); File file = this.testJarFile.getFile(); Repackager repackager = new Repackager(file); - long sourceLength = nestedFile.length(); - repackager.repackage(new Libraries() { @Override @@ -482,7 +479,6 @@ public class RepackagerTests { } }); - JarFile jarFile = new JarFile(file); try { assertThat(jarFile.getEntry("lib/" + nestedFile.getName()).getSize(),