Hi all...
in my classes when writing the toString() method I always use the ToStringBuilder from org.apache.commons
And when I'm extending other classes I use appendSuper()
and then my appends
The question:
Are there are any real differences in doing:
appendSuper(super.toString())
instead of
append(super.toString())
Kind of dummy question.
Cheers