I'm seeing a couple of things related to SimpleDateFormat usage in the Roller 3.0 codebase:
(1) There are a number of places where SimpleDateFormat is used in the Roller 3.0 codebase where the instance is shared but there is no synchronization being done. These things are not MT-safe. (2) Most construction of the formats use locales, but there are a number of places where SimpleDateFormat is constructed without a locale. Not sure if these are issues; I think some are, and some aren't. --a.
