Some words in advance...
Recently I wrote about multi-threading problems with
java.util.Calendar
and
java.text.DateFormat
. The last sentence was So maybe
it is time to search your code for all static usages of the
Calendar and various ...Format classes, before you start getting
strange errors.
Searching code is not very practical, especially if you do it manually. Everyone knows you can look at code for hours, without seeing an problem - and as soon as it has reached production systems it starts breaking up in various ways :-)
Fortunately smart and reknown people have devised ways of making the computer look for bugs automatically. Amongst others, …
[Read more]