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
This commit is contained in:
Javen O'Neal 2016-06-17 00:36:19 +00:00
parent d77a3f9058
commit 45ec02487c
2 changed files with 0 additions and 14 deletions

View 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);

View 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));