]> source.dussan.org Git - poi.git/commitdiff
#56791 More updates from OPOIFS to NPOIFS
authorNick Burch <nick@apache.org>
Mon, 11 May 2015 19:00:12 +0000 (19:00 +0000)
committerNick Burch <nick@apache.org>
Mon, 11 May 2015 19:00:12 +0000 (19:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678802 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hslf/HSLFSlideShow.java

index f5ac0c3b164b37d93f3598357393ccffed4b34dc..c2a5248e7cbb395bfdace52e2ae198699f913cf5 100644 (file)
@@ -19,7 +19,7 @@ package org.apache.poi.hslf;
 
 import java.io.ByteArrayInputStream;
 import java.io.ByteArrayOutputStream;
-import java.io.FileInputStream;
+import java.io.File;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
@@ -87,23 +87,15 @@ public final class HSLFSlideShow extends POIDocument {
     private ObjectData[] _objects;
     
     /**
-        * Returns the underlying POIFSFileSystem for the document
-        *  that is open.
-        */
-       protected POIFSFileSystem getPOIFSFileSystem() {
-               return directory.getFileSystem();
-       }
-
-   /**
-    * Returns the directory in the underlying POIFSFileSystem for the 
-    *  document that is open.
-    */
-   protected DirectoryNode getPOIFSDirectory() {
-      return directory;
-   }
+     * Returns the directory in the underlying POIFSFileSystem for the 
+     *  document that is open.
+     */
+    protected DirectoryNode getPOIFSDirectory() {
+        return directory;
+    }
 
        /**
-        * Constructs a Powerpoint document from fileName. Parses the document
+        * Constructs a PowerPoint document from fileName. Parses the document
         * and places all the important stuff into data structures.
         *
         * @param fileName The name of the file to read.
@@ -111,7 +103,7 @@ public final class HSLFSlideShow extends POIDocument {
         */
        public HSLFSlideShow(String fileName) throws IOException
        {
-               this(new FileInputStream(fileName));
+               this(new NPOIFSFileSystem(new File(fileName)));
        }
 
        /**