From 44633c6c85522147ab75bc67421da52352bbec04 Mon Sep 17 00:00:00 2001 From: Elliott Brooks <21270878+elliette@users.noreply.github.com> Date: Thu, 11 Dec 2025 11:12:17 -0800 Subject: [PATCH 1/2] Delete unused feature flag --- .../devtools_app/lib/src/shared/feature_flags.dart | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/packages/devtools_app/lib/src/shared/feature_flags.dart b/packages/devtools_app/lib/src/shared/feature_flags.dart index cdd187acf6d..5df6bf1ae4f 100644 --- a/packages/devtools_app/lib/src/shared/feature_flags.dart +++ b/packages/devtools_app/lib/src/shared/feature_flags.dart @@ -101,16 +101,6 @@ extension FeatureFlags on Never { enabled: true, ); - /// Flag to enable refactors in the Flutter Property Editor sidebar. - /// - /// https://github.com/flutter/devtools/issues/9214 - static const wasmByDefault = FlutterChannelFeatureFlag( - name: 'wasmByDefault', - flutterChannel: FlutterChannel.beta, - enabledForDartApps: false, - enabledForFlutterAppsFallback: false, - ); - /// A set of all the boolean feature flags for debugging purposes. /// /// When adding a new boolean flag, you are responsible for adding it to this @@ -130,7 +120,6 @@ extension FeatureFlags on Never { /// When adding a new Flutter channel flag, you are responsible for adding it /// to this map as well. static final _flutterChannelFlags = { - wasmByDefault, }; /// A helper to print the status of all the feature flags. From 588228e358412252db6c1141062f58c5e3e527c3 Mon Sep 17 00:00:00 2001 From: Elliott Brooks <21270878+elliette@users.noreply.github.com> Date: Thu, 11 Dec 2025 11:22:29 -0800 Subject: [PATCH 2/2] Formatting --- packages/devtools_app/lib/src/shared/feature_flags.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/devtools_app/lib/src/shared/feature_flags.dart b/packages/devtools_app/lib/src/shared/feature_flags.dart index 5df6bf1ae4f..a135c57df4c 100644 --- a/packages/devtools_app/lib/src/shared/feature_flags.dart +++ b/packages/devtools_app/lib/src/shared/feature_flags.dart @@ -119,8 +119,7 @@ extension FeatureFlags on Never { /// /// When adding a new Flutter channel flag, you are responsible for adding it /// to this map as well. - static final _flutterChannelFlags = { - }; + static final _flutterChannelFlags = {}; /// A helper to print the status of all the feature flags. static void debugPrintFeatureFlags({ConnectedApp? connectedApp}) {