https://issues.apache.org/bugzilla/show_bug.cgi?id=52186
--- Comment #1 from vladk <[email protected]> --- I can confirm the problem is still present in POI 3.9. Below is the simplest client to reproduce the problem: Workbook wb = new XSSFWorkbook(); Sheet sheet1 = wb.createSheet("new sheet"); sheet1.setColumnWidth(4, 5000); sheet1.setColumnWidth(5, 5000); sheet1.groupColumn((short) 4, (short) 7); sheet1.groupColumn((short) 9, (short) 12); FileOutputStream fileOut = new FileOutputStream("outlining.xlsx"); wb.write(fileOut); fileOut.close(); -- 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]
