]> source.dussan.org Git - poi.git/commitdiff
#56791 Default to NPOIFS
authorNick Burch <nick@apache.org>
Mon, 11 May 2015 14:26:01 +0000 (14:26 +0000)
committerNick Burch <nick@apache.org>
Mon, 11 May 2015 14:26:01 +0000 (14:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678759 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/POIDocument.java

index 950e5eb3e43ab9a83b56cbde6efa5079145364eb..d591def0beb4441da8fb6ee3b7c8035f014d7798 100644 (file)
@@ -182,7 +182,7 @@ public abstract class POIDocument {
         if (encryptionInfo != null) {
             try {
                 InputStream is = encryptionInfo.getDecryptor().getDataStream(directory);
-                POIFSFileSystem poifs = new POIFSFileSystem(is);
+                NPOIFSFileSystem poifs = new NPOIFSFileSystem(is);
                 is.close();
                 dirNode = poifs.getRoot();
             } catch (Exception e) {