mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#921 - Refactor internals - Change internal use of "findRowCount" to "findCount"
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user