Skip to content

Commit 45175f5

Browse files
authored
Now that we are on dev-23, remove analyzer //ignore (flutter#14780)
1 parent 39ddeb5 commit 45175f5

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

packages/flutter_tools/lib/src/vmservice.dart

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1277,30 +1277,21 @@ class ServiceMap extends ServiceObject implements Map<String, dynamic> {
12771277
int get length => _map.length;
12781278
@override
12791279
String toString() => _map.toString();
1280-
// TODO(tvolkert): Remove these ignores once dev.22 SDK is everywhere
12811280
@override
1282-
// ignore: undefined_method, override_on_non_overriding_method, non_type_as_type_argument
12831281
void addEntries(Iterable<MapEntry<String, dynamic>> entries) => _map.addEntries(entries);
12841282
@override
1285-
// ignore: undefined_method, override_on_non_overriding_method
12861283
Map<RK, RV> cast<RK, RV>() => _map.cast<RK, RV>();
12871284
@override
1288-
// ignore: undefined_method, override_on_non_overriding_method
12891285
void removeWhere(bool test(String key, dynamic value)) => _map.removeWhere(test);
12901286
@override
1291-
// ignore: undefined_class, undefined_method, override_on_non_overriding_method
12921287
Map<K2, V2> map<K2, V2>(MapEntry<K2, V2> transform(String key, dynamic value)) => _map.map(transform);
12931288
@override
1294-
// ignore: undefined_getter, override_on_non_overriding_getter, non_type_as_type_argument
12951289
Iterable<MapEntry<String, dynamic>> get entries => _map.entries;
12961290
@override
1297-
// ignore: undefined_method, override_on_non_overriding_method
12981291
void updateAll(dynamic update(String key, dynamic value)) => _map.updateAll(update);
12991292
@override
1300-
// ignore: undefined_method, override_on_non_overriding_method
13011293
Map<RK, RV> retype<RK, RV>() => _map.retype<RK, RV>();
13021294
@override
1303-
// ignore: undefined_method, override_on_non_overriding_method
13041295
dynamic update(String key, dynamic update(dynamic value), {dynamic ifAbsent()}) => _map.update(key, update, ifAbsent: ifAbsent);
13051296
}
13061297

0 commit comments

Comments
 (0)