Clean-up ignores that are not ignoring anything (dev/ edition) (#78490)

This commit is contained in:
Michael Goderbauer 2021-03-18 11:06:03 -07:00 committed by GitHub
parent d27666e058
commit 8364140e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 9 deletions

View File

@ -4,8 +4,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/scheduler.dart'; import 'package:flutter/scheduler.dart';
// ignore: implementation_imports import 'package:flutter_test/flutter_test.dart' show collectAllElementsFrom;
import 'package:flutter_test/src/all_elements.dart';
import '../common.dart'; import '../common.dart';

View File

@ -7,7 +7,6 @@ import 'package:flutter/material.dart';
class GalleryIcons { class GalleryIcons {
// This class is not meant to be instatiated or extended; this constructor // This class is not meant to be instatiated or extended; this constructor
// prevents instantiation and extension. // prevents instantiation and extension.
// ignore: unused_element
GalleryIcons._(); GalleryIcons._();
static const IconData tooltip = IconData(0xe900, fontFamily: 'GalleryIcons'); static const IconData tooltip = IconData(0xe900, fontFamily: 'GalleryIcons');

View File

@ -27,9 +27,6 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
// TODO(dnfield): Remove ignore once internal repo is up to date
// https://github.com/flutter/flutter/issues/74518
// ignore: await_only_futures
await vmService.dispose(); await vmService.dispose();
}); });

View File

@ -38,9 +38,6 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
// TODO(dnfield): Remove ignore once internal repo is up to date
// https://github.com/flutter/flutter/issues/74518
// ignore: await_only_futures
await vmService.dispose(); await vmService.dispose();
}); });