From: Andreas Beeker Date: Wed, 22 Jun 2016 22:51:14 +0000 (+0000) Subject: Ignore Tiff files X-Git-Tag: REL_3_15_BETA2~13 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1c2c1e2e13e0ccc93118e89625491cd79251abab;p=poi.git Ignore Tiff files git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749797 13f79535-47bb-0310-9956-ffa450edef68 --- 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());