rootvector2 opened a new pull request, #624:
URL: https://github.com/apache/commons-csv/pull/624

   the private `print(Object, CharSequence, Appendable, boolean)` overload is 
still a `synchronized` method so it locks on `this`, undoing 80d6887 which 
moved the sibling public print methods to `writeLock`; every print path routes 
through it, so external code holding the format monitor still blocks 
`printRecord`, which the new 
`CSVFormatTest.testPrintRecordNotBlockedByInstanceMonitor` reproduces (times 
out before the change) - lock it on `writeLock` too.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to