Browse Source

Remove unused annotation

pull/50/head
Dave Syer 12 years ago committed by Phillip Webb
parent
commit
8a1e39c4dc
  1. 4
      spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/ExplodedArchiveTests.java

4
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/ExplodedArchiveTests.java

@ -109,7 +109,8 @@ public class ExplodedArchiveTests { @@ -109,7 +109,8 @@ public class ExplodedArchiveTests {
Entry entry = getEntriesMap(this.archive).get("nested.jar");
Archive nested = this.archive.getNestedArchive(entry);
assertThat(nested.getUrl().toString(),
equalTo("jar:file:" + this.rootFolder.getPath() + File.separator + "nested.jar!/"));
equalTo("jar:file:" + this.rootFolder.getPath() + File.separator
+ "nested.jar!/"));
}
@Test
@ -123,7 +124,6 @@ public class ExplodedArchiveTests { @@ -123,7 +124,6 @@ public class ExplodedArchiveTests {
}
@Test
@SuppressWarnings("resource")
public void getFilteredArchive() throws Exception {
Archive filteredArchive = this.archive
.getFilteredArchive(new Archive.EntryFilter() {

Loading…
Cancel
Save