Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
cec64918
Unverified
Commit
cec64918
authored
Mar 24, 2021
by
Michael Goderbauer
Committed by
GitHub
Mar 24, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove ignores that are not ignoring anything (#78669)
parent
6b228346
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
13 deletions
+1
-13
stock_strings.dart
dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings.dart
+0
-2
stock_strings_en.dart
...enchmarks/test_apps/stocks/lib/i18n/stock_strings_en.dart
+0
-4
stock_strings_es.dart
...enchmarks/test_apps/stocks/lib/i18n/stock_strings_es.dart
+0
-4
test_wrapper.dart
packages/flutter_tools/lib/src/test/test_wrapper.dart
+1
-1
main.dart
packages/integration_test/example/lib/main.dart
+0
-2
No files found.
dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings.dart
View file @
cec64918
...
...
@@ -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
)
{
...
...
dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_en.dart
View file @
cec64918
...
...
@@ -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
);
...
...
dev/benchmarks/test_apps/stocks/lib/i18n/stock_strings_es.dart
View file @
cec64918
...
...
@@ -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
);
...
...
packages/flutter_tools/lib/src/test/test_wrapper.dart
View file @
cec64918
...
...
@@ -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
;
...
...
packages/integration_test/example/lib/main.dart
View file @
cec64918
...
...
@@ -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
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment