diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-07-16 15:30:08 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-07-16 15:30:08 +0000 |
commit | 05902bcd1186d24aeb9a8cdf43ee67bab517ed5f (patch) | |
tree | 26304118e1bfc7e0ee13bbb00d3762fd8f9d8f1c /src/ooxml/java/org/apache/poi/xssf/usermodel | |
parent | 38220f65b00801868a3c6942e5d3620a40380591 (diff) | |
download | poi-05902bcd1186d24aeb9a8cdf43ee67bab517ed5f.tar.gz poi-05902bcd1186d24aeb9a8cdf43ee67bab517ed5f.zip |
remove more deprecated code
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1879964 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml/java/org/apache/poi/xssf/usermodel')
-rw-r--r-- | src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFXmlColumnPr.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFXmlColumnPr.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFXmlColumnPr.java index 47d34f4bb4..e0032219f5 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFXmlColumnPr.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/helpers/XSSFXmlColumnPr.java @@ -21,7 +21,6 @@ import org.apache.poi.util.Internal; import org.apache.poi.util.Removal; import org.apache.poi.xssf.usermodel.XSSFTable; import org.apache.poi.xssf.usermodel.XSSFTableColumn; -import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableColumn; import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXmlColumnPr; import org.openxmlformats.schemas.spreadsheetml.x2006.main.STXmlDataType.Enum; @@ -55,14 +54,6 @@ public class XSSFXmlColumnPr { this.ctXmlColumnPr = ctXmlColumnPr; } - @Deprecated - @Removal(version="4.2") - public XSSFXmlColumnPr(XSSFTable table, CTTableColumn ctTableColum, CTXmlColumnPr ctXmlColumnPr) { - this.table = table; - this.tableColumn = table.getColumns().get(table.findColumnIndex(ctTableColum.getName())); - this.ctXmlColumnPr = ctXmlColumnPr; - } - /** * Get the column for which these XML column properties are set. * |