Hello. I have a code:
but my class does not call it and i can't see why any help? thanks!@Override public boolean equals(Object o){ Assessment a=(Assessment) o; if(this.getCandidate().equals(a.getCandidate())){ if(this.getAnswers().equals(a.getAnswers())){ if(this.getDate().equals(a.getDate())){ System.out.println("I am here"); return true; } } } return false; }