No effective change - code cleanup - change return to void

This commit is contained in:
Robin Bygrave
2015-07-31 20:28:41 +12:00
parent ea504a93cf
commit f06c1b83a9
21 changed files with 45 additions and 72 deletions
@@ -54,17 +54,15 @@ public class HashQueryPlanBuilder {
/**
* Add a number to the bind count for the hash.
*/
public HashQueryPlanBuilder bind(int extraBindCount) {
public void bind(int extraBindCount) {
bindCount += extraBindCount;
return this;
}
/**
* Add raw sql to the hash.
*/
public HashQueryPlanBuilder addRawSql(String rawSql) {
public void addRawSql(String rawSql) {
this.rawSql = rawSql;
return this;
}
/**