[Codenarc-user] ExplicitCallToEqualsMethod and implementing equals method
Brought to you by:
chrismair
From: R. S. <ren...@go...> - 2011-05-30 19:32:41
|
How is it possible to implement an equals method with the help of the superclass' equals method? @Override boolean equals(Object that) { ... super.equals(that) } Shouldn't the ExplicitCallToEqualsMethod rule allow this? Regards, René Scheibe |