File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ abstract class ExecutorBase<T extends TestEntity> {
45
45
46
46
Future <void > removeMany (List <int > ids);
47
47
48
- Future <List <T >> queryStringEquals (List <String > val ) =>
48
+ Future <List <T >> queryStringEquals (List <String > values ) =>
49
49
throw UnimplementedError ();
50
50
51
51
/// Verifies that the executor works as expected (returns proper results).
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class Executor extends ExecutorBase<TestEntityPlain> {
54
54
value: (o) => o)));
55
55
56
56
@override
57
- Future <List <TestEntityPlain >> readAll (List <int > ids ) =>
57
+ Future <List <TestEntityPlain >> readAll (List <int > optionalIds ) =>
58
58
Future .value (tracker.track ('readAll' , () => _box.values.toList ()));
59
59
60
60
@override
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ abstract class Executor<T extends TestEntity> extends ExecutorBase<T> {
28
28
Future .value (tracker.track ('updateMany' , () => box.putMany (items)));
29
29
30
30
@override
31
- Future <List <T >> readAll (List <int > ids ) =>
31
+ Future <List <T >> readAll (List <int > optionalIds ) =>
32
32
Future .value (tracker.track ('readAll' , () => box.getAll ()));
33
33
34
34
@override
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ abstract class Executor<T extends TestEntity> extends ExecutorBase<T> {
67
67
.toList ();
68
68
69
69
@override
70
- Future <List <T >> readAll (List <int > ids ) => tracker.trackAsync (
70
+ Future <List <T >> readAll (List <int > optionalIds ) => tracker.trackAsync (
71
71
'readAll' , () async => (await _db.query (_table)).map (_fromMap).toList ());
72
72
73
73
@override
You can’t perform that action at this time.
0 commit comments