I am merging a CVS branch and one of the larger changes is the replacement wherever it occurs of a Singleton pattern with abstract classes that have a static initialisation block and all static methods.
Is this something that's worth keeping since it will require merging a lot of conflicts, what sort of situation would I be looking at for this refactoring to be worthwhile?
We are running this app under Weblogic 8.1 (so JDK 1.4.2)
sorry Thomas, let me clarify..
the HEAD version has the traditional singleton pattern (private constructor, getInstance() etc)
the branch version has no constructor, is a 'public abstract class' and modified all the methods on the object to be 'static'. The code that used to exist in the private constructor is moved into a static block.
Then all usages of the class are changed which causes multiple conflicts in the merge.
There are a few cases where this change was made.