#921 - Refactor internals - Change internal use of "findRowCount" to "findCount"

This commit is contained in:
Rob Bygrave
2016-12-13 19:51:11 +13:00
parent f429811f79
commit cf37fda3f4
17 changed files with 36 additions and 41 deletions
@@ -11,9 +11,9 @@ import java.util.concurrent.FutureTask;
*/
public class QueryFutureRowCount<T> extends BaseFuture<Integer> implements FutureRowCount<T> {
private final CallableQueryRowCount<T> call;
private final CallableQueryCount<T> call;
public QueryFutureRowCount(CallableQueryRowCount<T> call) {
public QueryFutureRowCount(CallableQueryCount<T> call) {
super(new FutureTask<>(call));
this.call = call;
}