Unverified Commit 8364140e authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

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

parent d27666e0
...@@ -4,8 +4,7 @@ ...@@ -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';
......
...@@ -7,7 +7,6 @@ import 'package:flutter/material.dart'; ...@@ -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');
......
...@@ -27,9 +27,6 @@ void main() { ...@@ -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();
}); });
......
...@@ -38,9 +38,6 @@ void main() { ...@@ -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();
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment