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.
