You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2015/05/11 16:26:02 UTC

svn commit: r1678759 - /poi/trunk/src/java/org/apache/poi/POIDocument.java

Author: nick
Date: Mon May 11 14:26:01 2015
New Revision: 1678759

URL: http://svn.apache.org/r1678759
Log:
#56791 Default to NPOIFS

Modified:
    poi/trunk/src/java/org/apache/poi/POIDocument.java

Modified: poi/trunk/src/java/org/apache/poi/POIDocument.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/POIDocument.java?rev=1678759&r1=1678758&r2=1678759&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/POIDocument.java (original)
+++ poi/trunk/src/java/org/apache/poi/POIDocument.java Mon May 11 14:26:01 2015
@@ -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) {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org