bug 59170: remove deprecated XSSFExcelExtractor(String)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748495 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-15 04:26:14 +00:00
parent 9b217ab2da
commit 4243208ade

View File

@ -58,12 +58,6 @@ public class XSSFExcelExtractor extends POIXMLTextExtractor
private boolean includeHeadersFooters = true;
private boolean includeTextBoxes = true;
/**
* @deprecated Use {@link #XSSFExcelExtractor(org.apache.poi.openxml4j.opc.OPCPackage)} instead.
*/
public XSSFExcelExtractor(String path) throws XmlException, OpenXML4JException, IOException {
this(new XSSFWorkbook(path));
}
public XSSFExcelExtractor(OPCPackage container) throws XmlException, OpenXML4JException, IOException {
this(new XSSFWorkbook(container));
}