]> source.dussan.org Git - poi.git/commitdiff
Put back the NPOIFS constructor that got lost in r1101397
authorNick Burch <nick@apache.org>
Thu, 19 May 2011 11:59:27 +0000 (11:59 +0000)
committerNick Burch <nick@apache.org>
Thu, 19 May 2011 11:59:27 +0000 (11:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1124696 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/poifs/crypt/EncryptionInfo.java

index 70dd03799ee701b7d3eb2a8a702be8197380ba5d..1ea9a874214b936c7dadd337a8cbdf8def774402 100644 (file)
@@ -16,9 +16,9 @@
 ==================================================================== */
 package org.apache.poi.poifs.crypt;
 
-import org.apache.poi.poifs.filesystem.DocumentEntry;
 import org.apache.poi.poifs.filesystem.DirectoryNode;
 import org.apache.poi.poifs.filesystem.DocumentInputStream;
+import org.apache.poi.poifs.filesystem.NPOIFSFileSystem;
 import org.apache.poi.poifs.filesystem.POIFSFileSystem;
 
 import java.io.IOException;
@@ -38,6 +38,9 @@ public class EncryptionInfo {
     public EncryptionInfo(POIFSFileSystem fs) throws IOException {
        this(fs.getRoot());
     }
+    public EncryptionInfo(NPOIFSFileSystem fs) throws IOException {
+       this(fs.getRoot());
+    }
     public EncryptionInfo(DirectoryNode dir) throws IOException {
         DocumentInputStream dis = dir.createDocumentInputStream("EncryptionInfo");
         versionMajor = dis.readShort();