diff options
author | Dominik Stadler <centic@apache.org> | 2015-07-07 07:44:11 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2015-07-07 07:44:11 +0000 |
commit | 5845a41b78b0f01735cf7ada45bd044ab4f90e5e (patch) | |
tree | 07e4dcbaa5332f01a2651fd7e98c9d605e5b10a4 /src/testcases/org/apache/poi/hssf/dev | |
parent | 44fd9dc62b79ca04ba9cdb206c3addeda575eced (diff) | |
download | poi-5845a41b78b0f01735cf7ada45bd044ab4f90e5e.tar.gz poi-5845a41b78b0f01735cf7ada45bd044ab4f90e5e.zip |
Add some missing close(), reduce output in unit tests and remove some other Eclipse warnings
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1689590 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases/org/apache/poi/hssf/dev')
-rw-r--r-- | src/testcases/org/apache/poi/hssf/dev/BaseXLSIteratingTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcases/org/apache/poi/hssf/dev/BaseXLSIteratingTest.java b/src/testcases/org/apache/poi/hssf/dev/BaseXLSIteratingTest.java index 521b9ad679..0adb2cf984 100644 --- a/src/testcases/org/apache/poi/hssf/dev/BaseXLSIteratingTest.java +++ b/src/testcases/org/apache/poi/hssf/dev/BaseXLSIteratingTest.java @@ -79,11 +79,11 @@ public abstract class BaseXLSIteratingTest { try { runOneFile(dir, file, failed); } catch (Exception e) { - System.out.println("Failed: " + file); if(SILENT_EXCLUDED.contains(file)) { continue; } + System.out.println("Failed: " + file); e.printStackTrace(); // try to read it in HSSFWorkbook to quickly fail if we cannot read the file there at all and thus probably can use SILENT_EXCLUDED instead |