https://bz.apache.org/bugzilla/show_bug.cgi?id=65065
--- Comment #4 from PJ Fanning <[email protected]> --- I wrote a test case that parsed the attached xlsx and tried to clone all its styles and had no issues (latest poi trunk code). In the snippet below, I renamed the test file. ``` void test65065() throws IOException { try (XSSFWorkbook wb = openSampleWorkbook("bug65065.xlsx")) { int size = wb.getStylesSource().getNumCellStyles(); for (int i = 0; i < size; i++) { XSSFCellStyle style = wb.getStylesSource().getStyleAt(i); wb.createCellStyle().cloneStyleFrom(style); } } } ``` -- 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]
