mirror of https://github.com/apache/poi.git
Fix jdk14 compile issue
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/ooxml@696482 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b3f56e20b2
commit
c5d3b612fb
|
@ -1651,7 +1651,7 @@ public class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet
|
|||
* @param style the style to set
|
||||
*/
|
||||
public void setDefaultColumnStyle(short column, CellStyle style) {
|
||||
sheet.setDefaultColumnStyle(column, style.getIndex());
|
||||
sheet.setDefaultColumnStyle(column, ((HSSFCellStyle)style).getIndex());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue