aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/hssf
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2017-10-23 21:17:49 +0000
committerPJ Fanning <fanningpj@apache.org>2017-10-23 21:17:49 +0000
commit7dce661861340d31d50b4f18dd7fe85cc63d41e5 (patch)
tree6f845ea6454ef0b8cce3ec943599b28082b2d4fe /src/java/org/apache/poi/hssf
parente2e3b52013d219457c0dd63e3902a92709c278b1 (diff)
downloadpoi-7dce661861340d31d50b4f18dd7fe85cc63d41e5.tar.gz
poi-7dce661861340d31d50b4f18dd7fe85cc63d41e5.zip
Remove more deprecated code
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1813102 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/hssf')
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFRow.java22
1 files changed, 1 insertions, 21 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java b/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java
index 4ca64ea8fc..c0eb9bd20a 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java
@@ -113,27 +113,7 @@ public final class HSSFRow implements Row, Comparable<HSSFRow> {
{
return this.createCell(column,CellType.BLANK);
}
-
- /**
- * Use this to create new cells within the row and return it.
- * <p>
- * The cell that is returned will be of the requested type.
- * The type can be changed either through calling setCellValue
- * or setCellType, but there is a small overhead to doing this,
- * so it is best to create the required type up front.
- *
- * @param columnIndex - the column number this cell represents
- *
- * @return HSSFCell a high level representation of the created cell.
- * @throws IllegalArgumentException if columnIndex < 0 or greater than 255,
- * the maximum number of columns supported by the Excel binary format (.xls)
- * @deprecated POI 3.15 beta 3
- */
- @Override
- public HSSFCell createCell(int columnIndex, int type)
- {
- return createCell(columnIndex, CellType.forInt(type));
- }
+
/**
* Use this to create new cells within the row and return it.
* <p>