From c11440ae92199cecbe2d80b480675bd7eddcc3b7 Mon Sep 17 00:00:00 2001 From: stuartmorgan Date: Fri, 18 Sep 2020 17:32:10 -0400 Subject: [PATCH] Remove the Windows 'flutter create' warning (#66113) --- packages/flutter_tools/lib/src/commands/create.dart | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/flutter_tools/lib/src/commands/create.dart b/packages/flutter_tools/lib/src/commands/create.dart index 6220d24fb1f..92b4e27886c 100644 --- a/packages/flutter_tools/lib/src/commands/create.dart +++ b/packages/flutter_tools/lib/src/commands/create.dart @@ -506,15 +506,6 @@ To edit platform code in an IDE see https://flutter.dev/developing-packages/#edi 'directory in order to launch your app.'); globals.printStatus('Your $application code is in $relativeAppMain'); } - - // Warn about unstable templates. This shuold be last so that it's not - // lost among the other output. - if (featureFlags.isWindowsEnabled && platforms.contains('windows')) { - globals.printStatus(''); - globals.printStatus('WARNING: The Windows tooling and APIs are not yet stable. ' - 'You will likely need to re-create the "windows" directory after future ' - 'Flutter updates.'); - } } return FlutterCommandResult.success(); }