Refactor - tidy up in com.avaje.ebeaninternal.server.query, no effective change

This commit is contained in:
Rob Bygrave
2016-11-05 22:32:36 +13:00
parent 77e3346d9e
commit 670bac52f8
31 changed files with 139 additions and 160 deletions
@@ -10,7 +10,7 @@ import com.avaje.ebeaninternal.api.SpiQuery;
* @param <T> the entity bean type
* @author rbygrave
*/
public abstract class CallableQuery<T> {
abstract class CallableQuery<T> {
protected final SpiQuery<T> query;
@@ -18,7 +18,7 @@ public abstract class CallableQuery<T> {
protected final Transaction transaction;
public CallableQuery(SpiEbeanServer server, SpiQuery<T> query, Transaction t) {
CallableQuery(SpiEbeanServer server, SpiQuery<T> query, Transaction t) {
this.server = server;
this.query = query;
this.transaction = t;