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:
parent
d77a3f9058
commit
45ec02487c
@ -64,13 +64,6 @@ public final class HDGFDiagram extends POIDocument {
|
|||||||
public HDGFDiagram(NPOIFSFileSystem fs) throws IOException {
|
public HDGFDiagram(NPOIFSFileSystem fs) throws IOException {
|
||||||
this(fs.getRoot());
|
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 {
|
public HDGFDiagram(DirectoryNode dir) throws IOException {
|
||||||
super(dir);
|
super(dir);
|
||||||
|
|
||||||
|
@ -54,13 +54,6 @@ public final class VisioTextExtractor extends POIOLE2TextExtractor {
|
|||||||
public VisioTextExtractor(DirectoryNode dir) throws IOException {
|
public VisioTextExtractor(DirectoryNode dir) throws IOException {
|
||||||
this(new HDGFDiagram(dir));
|
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 {
|
public VisioTextExtractor(InputStream inp) throws IOException {
|
||||||
this(new NPOIFSFileSystem(inp));
|
this(new NPOIFSFileSystem(inp));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user