I have an empty constructor for a Class. I want to delete the constructor, but there are many places where I have things such as:
Klass my_klass = new Klass("");
I would like to delete the constructor and have Eclipse automatically refactor if it can. The result would look like:
Klass my_klass = new Klass();
Eclipse has all sorts of nice refactoring features. Does it have this?
1 Answer