| [Issue
172] Wonky Dating
The DateFormat produces some seemingly unpredictable
results parsing the date 2009-01-28-09:11:12 as
"Sun Nov 30 22:07:51 CET 2008". In this newsletter we
examine why and also show how DateFormat reacts to
concurrent access. |
[Issue
171] Throwing ConcurrentModificationException Early
One of the hardest exceptions to get rid of in a system is
th ConcurrentModificationException, which typically occurs
when a thread modifies a collection whilst another is busy
iterating. In this newsletter we show how we can fail on
the modifying, rather than the iterating thread. |