]> source.dussan.org Git - poi.git/commitdiff
fixed javadoc links after imports have been organized
authorAndreas Beeker <kiwiwings@apache.org>
Sat, 20 Jun 2015 15:08:42 +0000 (15:08 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Sat, 20 Jun 2015 15:08:42 +0000 (15:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1686636 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/poifs/property/PropertyTable.java
src/java/org/apache/poi/util/CloseIgnoringInputStream.java

index 28d49cde1cb31d419a804a248bfa8475604b31fd..75ca4a03b37b0782543f24a8d970ce7790d7a9de 100644 (file)
@@ -27,7 +27,7 @@ import org.apache.poi.poifs.storage.PropertyBlock;
 import org.apache.poi.poifs.storage.RawDataBlockList;
 
 /**
- * This class embodies the Property Table for the {@link POIFSFileSystem}; 
+ * This class embodies the Property Table for the {@link org.apache.poi.poifs.filesystem.POIFSFileSystem}; 
  *  this is basically the directory for all of the documents in the
  * filesystem.
  *
index 0ccc24ee9d27b9dd43ec0b02ccf9bec8a058a561..66e42c258c9c6baa39e4bb5236a80afa60f61248 100644 (file)
@@ -24,7 +24,7 @@ import java.io.InputStream;
  * A wrapper around an {@link InputStream}, which 
  *  ignores close requests made to it.
  *
- * Useful with {@link POIFSFileSystem}, where you want
+ * Useful with {@link org.apache.poi.poifs.filesystem.POIFSFileSystem}, where you want
  *  to control the close yourself.
  */
 public class CloseIgnoringInputStream extends FilterInputStream {