HHH-10802 - Fix Attempt to resolve foreign key metadata from JDBC metadata failed to find column mappings for foreign key

This commit is contained in:
Andrea Boriero 2016-06-06 16:51:28 +01:00
parent e03d4d1f88
commit 30ad787c9e
1 changed files with 1 additions and 4 deletions

View File

@ -164,10 +164,7 @@ public class Identifier implements Comparable<Identifier> {
@Override @Override
public boolean equals(Object o) { public boolean equals(Object o) {
if ( this == o ) { if ( !(o instanceof Identifier) ) {
return true;
}
if ( o == null || getClass() != o.getClass() ) {
return false; return false;
} }