diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2016-06-22 22:51:14 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2016-06-22 22:51:14 +0000 |
commit | 1c2c1e2e13e0ccc93118e89625491cd79251abab (patch) | |
tree | 23fb9def0ce9d5edd3ae7bf04d274017cf42639f /src/integrationtest/org | |
parent | 25902c642893c07fcc857f4586c1afec3f6f4c9b (diff) | |
download | poi-1c2c1e2e13e0ccc93118e89625491cd79251abab.tar.gz poi-1c2c1e2e13e0ccc93118e89625491cd79251abab.zip |
Ignore Tiff files
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749797 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest/org')
-rw-r--r-- | src/integrationtest/org/apache/poi/TestAllFiles.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/integrationtest/org/apache/poi/TestAllFiles.java b/src/integrationtest/org/apache/poi/TestAllFiles.java index 29e076b2d0..6183c185c6 100644 --- a/src/integrationtest/org/apache/poi/TestAllFiles.java +++ b/src/integrationtest/org/apache/poi/TestAllFiles.java @@ -148,6 +148,9 @@ public class TestAllFiles { HANDLERS.put(".svg", new NullFileHandler()); HANDLERS.put(".pict", new NullFileHandler()); HANDLERS.put(".jpg", new NullFileHandler()); + HANDLERS.put(".jpeg", new NullFileHandler()); + HANDLERS.put(".tif", new NullFileHandler()); + HANDLERS.put(".tiff", new NullFileHandler()); HANDLERS.put(".wav", new NullFileHandler()); HANDLERS.put(".pfx", new NullFileHandler()); HANDLERS.put(".xml", new NullFileHandler()); |