-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: tech-debtTechnical debt, code quality, testing, etc.Technical debt, code quality, testing, etc.team-toolOwned by Flutter Tool teamOwned by Flutter Tool team
Description
I suspect in the last 16 months if folks are still seeing this at HEAD we would ... know something is horribly broken:
flutter/packages/flutter_tools/lib/src/commands/build.dart
Lines 119 to 133 in 1e035cc
| /// Display a message describing the current null safety runtime mode | |
| /// that was selected. | |
| /// | |
| /// This is similar to the run message in run_hot.dart | |
| @protected | |
| void displayNullSafetyMode(BuildInfo buildInfo) { | |
| if (buildInfo.nullSafetyMode != NullSafetyMode.sound) { | |
| logger.printStatus(''); | |
| logger.printStatus('Building without sound null safety ⚠️', emphasis: true); | |
| logger.printStatus( | |
| 'Dart 3 will only support sound null safety, see https://dart.dev/null-safety', | |
| ); | |
| } | |
| logger.printStatus(''); | |
| } |
There are still artifacts from #118810, basically.
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: tech-debtTechnical debt, code quality, testing, etc.Technical debt, code quality, testing, etc.team-toolOwned by Flutter Tool teamOwned by Flutter Tool team