eliminated usage of a deprecated method

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@394856 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sean Sullivan 2006-04-18 06:15:45 +00:00
parent effa2052b4
commit 52f147ce5d
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ public class SVTableCellEditor extends AbstractCellEditor implements TableCellEd
editor.setText(Double.toString(cell.getNumericCellValue()));
break;
case HSSFCell.CELL_TYPE_STRING:
editor.setText(cell.getStringCellValue());
editor.setText(cell.getRichStringCellValue().getString());
break;
case HSSFCell.CELL_TYPE_FORMULA:
default: