From 8a1e39c4dce11f72228511ef45fce4c6cb229175 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 3 Sep 2013 09:40:48 +0100 Subject: [PATCH] Remove unused annotation --- .../org/springframework/boot/loader/ExplodedArchiveTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/ExplodedArchiveTests.java b/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/ExplodedArchiveTests.java index 8210e10de7..c8018cb3f6 100644 --- a/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/ExplodedArchiveTests.java +++ b/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/ExplodedArchiveTests.java @@ -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 { } @Test - @SuppressWarnings("resource") public void getFilteredArchive() throws Exception { Archive filteredArchive = this.archive .getFilteredArchive(new Archive.EntryFilter() {