From: Nick Burch Date: Mon, 11 May 2015 19:00:12 +0000 (+0000) Subject: #56791 More updates from OPOIFS to NPOIFS X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c9c4aee324c1352916f1b95c2b0cb3c72ef3917a;p=poi.git #56791 More updates from OPOIFS to NPOIFS git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678802 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hslf/HSLFSlideShow.java b/src/scratchpad/src/org/apache/poi/hslf/HSLFSlideShow.java index f5ac0c3b16..c2a5248e7c 100644 --- a/src/scratchpad/src/org/apache/poi/hslf/HSLFSlideShow.java +++ b/src/scratchpad/src/org/apache/poi/hslf/HSLFSlideShow.java @@ -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))); } /**