]> source.dussan.org Git - poi.git/commitdiff
bug 59170: remove deprecated o.a.p.hdgf.HDGFDiagram constructor
authorJaven O'Neal <onealj@apache.org>
Fri, 17 Jun 2016 00:36:19 +0000 (00:36 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 17 Jun 2016 00:36:19 +0000 (00:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748782 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hdgf/HDGFDiagram.java
src/scratchpad/src/org/apache/poi/hdgf/extractor/VisioTextExtractor.java

index f9f6db581d6cf82e5caa279cd181c4649abc93c9..ea351081e89a5dbd9a88a9140c8aeb949201ac16 100644 (file)
@@ -64,13 +64,6 @@ public final class HDGFDiagram extends POIDocument {
        public HDGFDiagram(NPOIFSFileSystem fs) throws IOException {
                this(fs.getRoot());
        }
-   /**
-    * @deprecated Use {@link #HDGFDiagram(DirectoryNode)} instead 
-    */
-   @Deprecated
-   public HDGFDiagram(DirectoryNode dir, POIFSFileSystem fs) throws IOException {
-      this(dir);
-   }
        public HDGFDiagram(DirectoryNode dir) throws IOException {
                super(dir);
 
index 320800a7260b99465665b1423b38804bdd62994c..6629187886773c4e7e6dedeef79a275dbcd87696 100644 (file)
@@ -53,13 +53,6 @@ public final class VisioTextExtractor extends POIOLE2TextExtractor {
        }
        public VisioTextExtractor(DirectoryNode dir) throws IOException {
                this(new HDGFDiagram(dir));
-   }
-   /**
-    * @deprecated Use {@link #VisioTextExtractor(DirectoryNode)} instead 
-    */
-   @Deprecated
-       public VisioTextExtractor(DirectoryNode dir, POIFSFileSystem fs) throws IOException {
-               this(new HDGFDiagram(dir, fs));
        }
        public VisioTextExtractor(InputStream inp) throws IOException {
                this(new NPOIFSFileSystem(inp));