mirror of https://github.com/apache/poi.git
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:
parent
54efb9b0a1
commit
fc82bb150d
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue