Unverified Commit cec64918 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Remove ignores that are not ignoring anything (#78669)

parent 6b228346
......@@ -4,7 +4,6 @@
import 'dart:async';
// ignore: unused_import
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
......@@ -67,7 +66,6 @@ import 'stock_strings_es.dart';
abstract class StockStrings {
StockStrings(String locale) : assert(locale != null), localeName = intl.Intl.canonicalizedLocale(locale.toString());
// ignore: unused_field
final String localeName;
static StockStrings of(BuildContext context) {
......
......@@ -2,12 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'stock_strings.dart';
// ignore_for_file: unnecessary_brace_in_string_interps
/// The translations for English (`en`).
class StockStringsEn extends StockStrings {
StockStringsEn([String locale = 'en']) : super(locale);
......
......@@ -2,12 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'stock_strings.dart';
// ignore_for_file: unnecessary_brace_in_string_interps
/// The translations for Spanish Castilian (`es`).
class StockStringsEs extends StockStrings {
StockStringsEs([String locale = 'es']) : super(locale);
......
......@@ -11,7 +11,7 @@ import 'package:test_core/src/platform.dart' as hack show registerPlatformPlugin
import 'package:test_core/src/platform.dart'; // ignore: implementation_imports
export 'package:test_api/backend.dart' show Runtime; // ignore: deprecated_member_use
export 'package:test_core/src/platform.dart' show PlatformPlugin; // ignore: implementation_imports
export 'package:test_core/src/platform.dart' show PlatformPlugin;
abstract class TestWrapper {
const factory TestWrapper() = _DefaultTestWrapper;
......
......@@ -4,6 +4,4 @@
import 'my_app.dart' if (dart.library.html) 'my_web_app.dart';
// ignore_for_file: public_member_api_docs
void main() => startApp();
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