Skip to content
Snippets Groups Projects
Commit 2cb6eb60 authored by langella's avatar langella
Browse files

replacing equals with pure abstracted method

git-svn-id: https://subversion.renater.fr/xtandempipeline/trunk@289 b8ef2a07-7df7-436f-90b9-41648038564b
parent 3ce01ea8
No related branches found
No related tags found
No related merge requests found
......@@ -11,13 +11,7 @@ abstract public class HashKey4Groups implements Comparable<HashKey4Groups> {
}
@Override
public boolean equals(Object toCompare) {
if (this.hashCode() == toCompare.hashCode()) {
// logger.debug("equals on hashSampleScan "+this.toString());
return true;
}
return false;
}
abstract public boolean equals(Object toCompare);
@Override
abstract public int hashCode();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment