Hi, looking at the CheckSum class, I wonder why we have this method :
public boolean isEqual(CheckSum other) {
return this.equals(other);
}
It's not used anywhere, and I suspect it's a duplication of the equals()
method.
Can we get rid of it ?
