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@394855 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6e09c4be55
commit
54efb9b0a1
|
@ -189,7 +189,7 @@ public class SVTableCellRenderer extends JLabel
|
|||
setValue(cellFormatter.format(format, c.getNumericCellValue()));
|
||||
break;
|
||||
case HSSFCell.CELL_TYPE_STRING:
|
||||
setValue(c.getStringCellValue());
|
||||
setValue(c.getRichStringCellValue().getString());
|
||||
break;
|
||||
case HSSFCell.CELL_TYPE_FORMULA:
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue