HHH-2021 : reformat fix for fragile QueryKey.equals()
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14630 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
df9816c570
commit
6bc9024e7c
|
@ -51,8 +51,8 @@ public class QueryKey implements Serializable {
|
|||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (!(other instanceof QueryKey)) return false;
|
||||
QueryKey that = (QueryKey) other;
|
||||
if (!(other instanceof QueryKey)) return false;
|
||||
QueryKey that = (QueryKey) other;
|
||||
if ( !sqlQueryString.equals(that.sqlQueryString) ) return false;
|
||||
if ( !EqualsHelper.equals(firstRow, that.firstRow) || !EqualsHelper.equals(maxRows, that.maxRows) ) return false;
|
||||
if ( !EqualsHelper.equals(customTransformer, that.customTransformer) ) return false;
|
||||
|
|
Loading…
Reference in New Issue