From: Javen O'Neal Date: Fri, 17 Jun 2016 00:36:19 +0000 (+0000) Subject: bug 59170: remove deprecated o.a.p.hdgf.HDGFDiagram constructor X-Git-Tag: REL_3_15_BETA2~83 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=27abeec40bdfb22264e6f80c40bdcfd7ac338ecf;p=poi.git bug 59170: remove deprecated o.a.p.hdgf.HDGFDiagram constructor git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748782 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hdgf/HDGFDiagram.java b/src/scratchpad/src/org/apache/poi/hdgf/HDGFDiagram.java index f9f6db581d..ea351081e8 100644 --- a/src/scratchpad/src/org/apache/poi/hdgf/HDGFDiagram.java +++ b/src/scratchpad/src/org/apache/poi/hdgf/HDGFDiagram.java @@ -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); diff --git a/src/scratchpad/src/org/apache/poi/hdgf/extractor/VisioTextExtractor.java b/src/scratchpad/src/org/apache/poi/hdgf/extractor/VisioTextExtractor.java index 320800a726..6629187886 100644 --- a/src/scratchpad/src/org/apache/poi/hdgf/extractor/VisioTextExtractor.java +++ b/src/scratchpad/src/org/apache/poi/hdgf/extractor/VisioTextExtractor.java @@ -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));