Skip to content

Commit 560c722

Browse files
authored
TODO Audits - 1 (flutter#53604)
1 parent 9b6fd7c commit 560c722

File tree

6 files changed

+4
-22
lines changed

6 files changed

+4
-22
lines changed

dev/benchmarks/complex_layout/android/app/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,6 @@ android {
3939
signingConfig signingConfigs.debug
4040
}
4141
}
42-
43-
aaptOptions {
44-
// TODO(goderbauer): remove when https://github.com/flutter/flutter/issues/8986 is resolved.
45-
if(System.getenv("FLUTTER_CI_WIN")) {
46-
println "AAPT cruncher disabled when running on CI, see https://github.com/flutter/flutter/issues/8986"
47-
cruncherEnabled false
48-
}
49-
}
5042
}
5143

5244
flutter {

dev/benchmarks/platform_views_layout/android/app/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,6 @@ android {
3939
signingConfig signingConfigs.debug
4040
}
4141
}
42-
43-
aaptOptions {
44-
// TODO(goderbauer): remove when https://github.com/flutter/flutter/issues/8986 is resolved.
45-
if(System.getenv("FLUTTER_CI_WIN")) {
46-
println "AAPT cruncher disabled when running on CI, see https://github.com/flutter/flutter/issues/8986"
47-
cruncherEnabled false
48-
}
49-
}
5042
}
5143

5244
flutter {

dev/benchmarks/test_apps/stocks/lib/stock_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Stock {
1919
Stock(this.symbol, this.name, this.lastSale, this.marketCap, this.percentChange);
2020

2121
Stock.fromFields(List<String> fields) {
22-
// FIXME: This class should only have static data, not lastSale, etc.
22+
// TODO(jackson): This class should only have static data, not lastSale, etc.
2323
// "Symbol","Name","LastSale","MarketCap","IPOyear","Sector","industry","Summary Quote",
2424
lastSale = 0.0;
2525
try {

dev/devicelab/lib/framework/framework.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ class _TaskRunner {
9797
for (final RunningProcessInfo info in afterRunningDartInstances) {
9898
if (!beforeRunningDartInstances.contains(info)) {
9999
print('$info was leaked by this test.');
100-
// TODO(dnfield): remove this special casing after https://github.com/flutter/flutter/issues/29141 is resolved.
101100
if (result is TaskResultCheckProcesses) {
102101
result = TaskResult.failure('This test leaked dart processes');
103102
}

dev/devicelab/lib/framework/running_processes.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class RunningProcessInfo {
2727

2828
@override
2929
int get hashCode {
30-
// TODO(dnfield): Replace this when Object.hashValues lands.
30+
// TODO(dnfield): Replace this when Object.hashValues lands, https://github.com/dart-lang/sdk/issues/11617
3131
int hash = 17;
3232
if (pid != null) {
3333
hash = hash * 23 + pid.hashCode;
@@ -88,8 +88,7 @@ Stream<RunningProcessInfo> windowsRunningProcesses(String processName) async* {
8888
? '"Get-CimInstance Win32_Process -Filter \\"name=\'$processName\'\\" | Select-Object ProcessId,CreationDate,CommandLine | Format-Table -AutoSize | Out-String -Width 4096"'
8989
: '"Get-CimInstance Win32_Process | Select-Object ProcessId,CreationDate,CommandLine | Format-Table -AutoSize | Out-String -Width 4096"';
9090
// Unfortunately, there doesn't seem to be a good way to get ProcessManager to
91-
// run this. May be a bug in Dart.
92-
// TODO(dnfield): fix this when https://github.com/dart-lang/sdk/issues/36175 is resolved.
91+
// run this.
9392
final ProcessResult result = await Process.run(
9493
'powershell -command $script',
9594
<String>[],

dev/devicelab/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ tasks:
584584
stage: devicelab_ios
585585
required_agent_capabilities: ["mac/ios"]
586586

587-
# TODO(fujino): does not pass on iOS13 https://github.com/flutter/flutter/issues/41133
587+
# TODO(fujino): does not pass on iOS13 https://github.com/flutter/flutter/issues/43029
588588
# system_debug_ios:
589589
# description: >
590590
# Tests that the Engine correctly initializes the system debugger for debug-mode iOS apps.

0 commit comments

Comments
 (0)