https://bz.apache.org/bugzilla/show_bug.cgi?id=60902
--- Comment #12 from Nick Burch <[email protected]> --- For your use-case, copying from one workbook to another, I'd probably lean towards maintaining a Map<CellStyle,CellStyle> in your code + calling cloneStyleFrom for any you don't have. You'd then grab the cell style from the source workbook, grab the existing cloned style in the destination workbook if it was there, or clone+store+use if not. (Map is source workbook style to destination workbook style) Sounds like we've got some bugs to solve in the existing cloneStyleFrom before that approach could work though -- 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]
