Removed reference to deprecated call.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352519 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-04-28 08:52:41 +00:00
parent 65f2de7e49
commit c0a2ace232
1 changed files with 1 additions and 2 deletions

View File

@ -107,8 +107,7 @@ public class TestReadWriteChart
HSSFDateUtil
.getJavaDate(firstCell.getNumericCellValue()));
HSSFRow row = sheet.createRow(( short ) 15);
HSSFCell cell = row.createCell(( short ) 1,
HSSFCell.CELL_TYPE_NUMERIC);
HSSFCell cell = row.createCell(( short ) 1);
cell.setCellValue(22);
Sheet newSheet = workbook.getSheetAt(0).getSheet();