I have a singleton object in my application. My project partner however has put several references to that object as private instance fields. Is it an abuse of the pattern?
EDIT: I'm sorry not to have added more context to the question but I couldn't do it when I wrote it. The singleton object never changes during all the duration of the application. It provides functionalities to convert strings to a certain type of objects and vice-versa. My partner says that it is better to declare those fields in order to provide implicit documentation of the class we are writing. That means that it is possible to see at a glance which singleton objects our class depends on. This could be useful for our javadoc and uml generator. However, I don't think we should use the code like this: documentation is one thing and the code it refers to another thing.