[HK][SONAR] using equals with hashCode
this fixed sonar finding that classes that override equals() also override hashCode().
@sschulz92 investigating if the bahavior of equals changed due to missing check of
if (!(o instanceof AbstractRenderMetrics)) {
return false;
}
which has been replaced by
if (getClass() != obj.getClass()) {
return false;
}
I guess I will add a test-case to verify ..
You have changed a missing check? I do not get the point tbh :D
You have changed a missing check? I do not get the point tbh :D
Eclipse allows to generate equals & hashCode using members of the class. the generated equals method change as mentioned and I'd like to check if tow different instances / sub-classes of this Abstract class returned equal=true in the past while the new version would say (different class) that these are not equals anymore.
HTH