Commit 0b7256e7 authored by Phillip Webb's avatar Phillip Webb

Fix compile failure on JDK 6

parent 00fc04c0
...@@ -123,6 +123,7 @@ public class ExplodedArchiveTests { ...@@ -123,6 +123,7 @@ 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() {
...@@ -140,7 +141,6 @@ public class ExplodedArchiveTests { ...@@ -140,7 +141,6 @@ public class ExplodedArchiveTests {
new URL[] { filteredArchive.getUrl() }); new URL[] { filteredArchive.getUrl() });
assertThat(classLoader.getResourceAsStream("1.dat").read(), equalTo(1)); assertThat(classLoader.getResourceAsStream("1.dat").read(), equalTo(1));
assertThat(classLoader.getResourceAsStream("2.dat"), nullValue()); assertThat(classLoader.getResourceAsStream("2.dat"), nullValue());
classLoader.close();
} }
private Map<String, Archive.Entry> getEntriesMap(Archive archive) { private Map<String, Archive.Entry> getEntriesMap(Archive archive) {
......
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