Remove unused annotation

This commit is contained in:
Dave Syer
2013-09-03 09:40:48 +01:00
committed by Phillip Webb
parent 8c7c5d4dc9
commit 8a1e39c4dc

View File

@@ -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() {