https://issues.apache.org/bugzilla/show_bug.cgi?id=54443
--- Comment #8 from [email protected] --- // simplest case this bug can be reproduced HSSFWorkbook workbook = new HSSFWorkbook( ); HSSFCellStyle style = workbook.createCellStyle(); HSSFCellStyle newStyle = workbook.createCellStyle(); HSSFSheet mySheet = workbook.createSheet(); HSSFRow row = mySheet.createRow( 0 ); HSSFCell cell = row.createCell( 0 ); cell.setCellStyle( newStyle ); // style is now not assigned HSSFOptimiser.optimiseCellStyles( workbook ); -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
