From: Nick Burch Date: Tue, 26 May 2015 14:06:17 +0000 (+0000) Subject: Fix warnings X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fe07d32178a2225ec58e8c72013499d02fb6d582;p=poi.git Fix warnings git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681763 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/testcases/org/apache/poi/poifs/filesystem/TestNPOIFSFileSystem.java b/src/testcases/org/apache/poi/poifs/filesystem/TestNPOIFSFileSystem.java index 75161b9f83..13fef7d8b5 100644 --- a/src/testcases/org/apache/poi/poifs/filesystem/TestNPOIFSFileSystem.java +++ b/src/testcases/org/apache/poi/poifs/filesystem/TestNPOIFSFileSystem.java @@ -20,8 +20,8 @@ package org.apache.poi.poifs.filesystem; import static org.hamcrest.core.IsCollectionContaining.hasItem; import static org.hamcrest.core.IsEqual.equalTo; import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertThat; import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertThat; import static org.junit.Assert.fail; import java.io.ByteArrayInputStream; @@ -42,7 +42,6 @@ import org.apache.poi.poifs.property.Property; import org.apache.poi.poifs.property.RootProperty; import org.apache.poi.poifs.storage.HeaderBlock; import org.apache.poi.util.IOUtils; -import org.junit.Ignore; import org.junit.Test; /** @@ -1306,6 +1305,9 @@ public final class TestNPOIFSFileSystem { normDoc = (DocumentEntry)testDir.getEntry("Normal4106"); assertContentsMatches(main4106, normDoc); + + // All done + fs.close(); } @Test @@ -1334,6 +1336,9 @@ public final class TestNPOIFSFileSystem { assertEquals("test-zero-", prop.getName().substring(0, 10)); assertEquals(POIFSConstants.END_OF_CHAIN, prop.getStartBlock()); } + + // All done + fs.close(); } @Test @@ -1425,6 +1430,9 @@ public final class TestNPOIFSFileSystem { emptyDoc = (DocumentEntry)testDir.getEntry("empty-3"); assertContentsMatches(empty, emptyDoc); + + // All done + fs.close(); } /**