aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache')
-rw-r--r--src/java/org/apache/poi/POIDocument.java4
-rw-r--r--src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java11
-rw-r--r--src/java/org/apache/poi/poifs/filesystem/DocumentInputStream.java2
-rw-r--r--src/java/org/apache/poi/poifs/filesystem/POIFSDocument.java2
4 files changed, 4 insertions, 15 deletions
diff --git a/src/java/org/apache/poi/POIDocument.java b/src/java/org/apache/poi/POIDocument.java
index 69033a3f5f..78015b4a95 100644
--- a/src/java/org/apache/poi/POIDocument.java
+++ b/src/java/org/apache/poi/POIDocument.java
@@ -418,8 +418,8 @@ public abstract class POIDocument implements Closeable {
@Override
public void close() throws IOException {
if (directory != null) {
- if (directory.getNFileSystem() != null) {
- directory.getNFileSystem().close();
+ if (directory.getFileSystem() != null) {
+ directory.getFileSystem().close();
clearDirectory();
}
}
diff --git a/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java b/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java
index 84b2de913d..47c7e7ff4b 100644
--- a/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java
+++ b/src/java/org/apache/poi/poifs/filesystem/DirectoryNode.java
@@ -119,17 +119,6 @@ public class DirectoryNode
return _nfilesystem;
}
-
- /**
- * If this is NPOIFS based, return the NPOIFSFileSystem
- * that this belong to, otherwise Null if OPOIFS based
- * @return the filesystem that this belongs to
- */
- public POIFSFileSystem getNFileSystem()
- {
- return _nfilesystem;
- }
-
/**
* open a document in the directory's entry's list of entries
*
diff --git a/src/java/org/apache/poi/poifs/filesystem/DocumentInputStream.java b/src/java/org/apache/poi/poifs/filesystem/DocumentInputStream.java
index a89adad489..e808d357ce 100644
--- a/src/java/org/apache/poi/poifs/filesystem/DocumentInputStream.java
+++ b/src/java/org/apache/poi/poifs/filesystem/DocumentInputStream.java
@@ -87,7 +87,7 @@ public final class DocumentInputStream extends InputStream implements LittleEndi
DocumentProperty property = (DocumentProperty)doc.getProperty();
_document = new POIFSDocument(
property,
- ((DirectoryNode)doc.getParent()).getNFileSystem()
+ ((DirectoryNode)doc.getParent()).getFileSystem()
);
_data = _document.getBlockIterator();
}
diff --git a/src/java/org/apache/poi/poifs/filesystem/POIFSDocument.java b/src/java/org/apache/poi/poifs/filesystem/POIFSDocument.java
index b96110fc46..a47b2d8300 100644
--- a/src/java/org/apache/poi/poifs/filesystem/POIFSDocument.java
+++ b/src/java/org/apache/poi/poifs/filesystem/POIFSDocument.java
@@ -54,7 +54,7 @@ public final class POIFSDocument implements POIFSViewable, Iterable<ByteBuffer>
*/
public POIFSDocument(DocumentNode document) {
this((DocumentProperty)document.getProperty(),
- ((DirectoryNode)document.getParent()).getNFileSystem());
+ ((DirectoryNode)document.getParent()).getFileSystem());
}
/**