https://issues.apache.org/bugzilla/show_bug.cgi?id=55612
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #6 from Yegor Kozlov <[email protected]> --- patched applied in r1535810 I realized I was wrong when I wrote about thread unsafety of this patch. We really needed synchronization in Bugzilla 55611 because DateUtil.isADateFormat(int, String) is static and the state of its cache must be synchronized. HSSFCellStyle.getDataFormatString() is an instance method and we can assume that it is accessed from one thread ta a time. So I removed the synchronization lock and committed. Sorry if my comment caused confusion and extra work on your side. Regards, Yegor -- 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]
