Skip to content

Commit 0448386

Browse files
Lints: name parameters like in super method
1 parent 7d9c069 commit 0448386

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/executor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ abstract class ExecutorBase<T extends TestEntity> {
4545

4646
Future<void> removeMany(List<int> ids);
4747

48-
Future<List<T>> queryStringEquals(List<String> val) =>
48+
Future<List<T>> queryStringEquals(List<String> values) =>
4949
throw UnimplementedError();
5050

5151
/// Verifies that the executor works as expected (returns proper results).

lib/hive_executor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class Executor extends ExecutorBase<TestEntityPlain> {
5454
value: (o) => o)));
5555

5656
@override
57-
Future<List<TestEntityPlain>> readAll(List<int> ids) =>
57+
Future<List<TestEntityPlain>> readAll(List<int> optionalIds) =>
5858
Future.value(tracker.track('readAll', () => _box.values.toList()));
5959

6060
@override

lib/obx_executor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ abstract class Executor<T extends TestEntity> extends ExecutorBase<T> {
2828
Future.value(tracker.track('updateMany', () => box.putMany(items)));
2929

3030
@override
31-
Future<List<T>> readAll(List<int> ids) =>
31+
Future<List<T>> readAll(List<int> optionalIds) =>
3232
Future.value(tracker.track('readAll', () => box.getAll()));
3333

3434
@override

lib/sqf_executor.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ abstract class Executor<T extends TestEntity> extends ExecutorBase<T> {
6767
.toList();
6868

6969
@override
70-
Future<List<T>> readAll(List<int> ids) => tracker.trackAsync(
70+
Future<List<T>> readAll(List<int> optionalIds) => tracker.trackAsync(
7171
'readAll', () async => (await _db.query(_table)).map(_fromMap).toList());
7272

7373
@override

0 commit comments

Comments
 (0)