Commit 8a1e39c4 authored by Dave Syer's avatar Dave Syer Committed by Phillip Webb

Remove unused annotation

parent 8c7c5d4d
...@@ -109,7 +109,8 @@ public class ExplodedArchiveTests { ...@@ -109,7 +109,8 @@ public class ExplodedArchiveTests {
Entry entry = getEntriesMap(this.archive).get("nested.jar"); Entry entry = getEntriesMap(this.archive).get("nested.jar");
Archive nested = this.archive.getNestedArchive(entry); Archive nested = this.archive.getNestedArchive(entry);
assertThat(nested.getUrl().toString(), 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 @Test
...@@ -123,7 +124,6 @@ public class ExplodedArchiveTests { ...@@ -123,7 +124,6 @@ public class ExplodedArchiveTests {
} }
@Test @Test
@SuppressWarnings("resource")
public void getFilteredArchive() throws Exception { public void getFilteredArchive() throws Exception {
Archive filteredArchive = this.archive Archive filteredArchive = this.archive
.getFilteredArchive(new Archive.EntryFilter() { .getFilteredArchive(new Archive.EntryFilter() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment