diff options
Diffstat (limited to 'src/java/org/apache/poi/hssf/usermodel/HSSFCell.java')
-rw-r--r-- | src/java/org/apache/poi/hssf/usermodel/HSSFCell.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java b/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java index bf317b01dc..08825ce358 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java @@ -99,7 +99,7 @@ public class HSSFCell implements Cell { * @param row - the row of this cell * @param col - the column for this cell * - * @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(short) + * @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(int) */ protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col) { @@ -145,7 +145,7 @@ public class HSSFCell implements Cell { * @param type - CELL_TYPE_NUMERIC, CELL_TYPE_STRING, CELL_TYPE_FORMULA, CELL_TYPE_BLANK, * CELL_TYPE_BOOLEAN, CELL_TYPE_ERROR * Type of cell - * @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(short,int) + * @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(int,int) */ protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col, int type) |