show/hide this revision's text 2 Additional explanation available in article from Google added

Google has a Singleton Detector for Java that I believe started out as a tool that must be run on all code produced at Google. The nutshell reason to remove Singletons:

because they can make testing difficult and hide problems with your design

For a more explicit explanation see 'Why Singletons Are Controversial' from Google.

show/hide this revision's text 1

Google has a Singleton Detector for Java that I believe started out as a tool that must be run on all code produced at Google. The nutshell reason to remove Singletons:

because they can make testing difficult and hide problems with your design