HHH-6766 - Test cleanup

This commit is contained in:
Lukasz Antoniak 2011-10-24 21:53:25 +02:00 committed by Strong Liu
parent fed759f8e5
commit c74610bd80
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ public abstract class Person {
@Override
public boolean equals(Object o) {
if ( this == o ) return true;
if ( o == null || getClass() != o.getClass() ) return false;
if ( !( o instanceof Person ) ) return false;
Person person = (Person) o;