Explicit cast

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@757904 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2009-03-24 17:00:00 +00:00
parent d8af6dfdd4
commit 579a4b95a4

View File

@ -1133,10 +1133,9 @@ public class HSSFWorkbook extends POIDocument implements org.apache.poi.ss.userm
* @param idx index within the set of styles
* @return HSSFCellStyle object at the index
*/
public HSSFCellStyle getCellStyleAt(short idx)
{
ExtendedFormatRecord xfr = workbook.getExFormatAt(idx);
ExtendedFormatRecord xfr = workbook.getExFormatAt((int)idx);
HSSFCellStyle style = new HSSFCellStyle(idx, xfr, this);
return style;