no effective change - format only

This commit is contained in:
Rob Bygrave
2016-11-17 19:24:38 +13:00
parent 2dceccfa78
commit 002d7d9f27
36 changed files with 873 additions and 897 deletions
@@ -6,7 +6,7 @@ package com.avaje.ebeaninternal.api;
public class HashQuery {
private final CQueryPlanKey planHash;
private final int bindHash;
/**
@@ -26,7 +26,7 @@ public class HashQuery {
hc = 31 * hc + bindHash;
return hc;
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
@@ -34,7 +34,7 @@ public class HashQuery {
if (!(obj instanceof HashQuery)) {
return false;
}
HashQuery e = (HashQuery) obj;
return e.bindHash == bindHash && e.planHash.equals(planHash);
}