You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kerby@directory.apache.org by Emmanuel Lécharny <el...@symas.com> on 2016/01/08 11:24:50 UTC

Useless method ?

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 ?