Skip to content

Commit 2b769c6

Browse files
authored
Delete unused wasmByDefault feature flag (#9576)
1 parent dff1b55 commit 2b769c6

1 file changed

Lines changed: 1 addition & 13 deletions

File tree

packages/devtools_app/lib/src/shared/feature_flags.dart

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,6 @@ extension FeatureFlags on Never {
101101
enabled: true,
102102
);
103103

104-
/// Flag to enable refactors in the Flutter Property Editor sidebar.
105-
///
106-
/// https://github.com/flutter/devtools/issues/9214
107-
static const wasmByDefault = FlutterChannelFeatureFlag(
108-
name: 'wasmByDefault',
109-
flutterChannel: FlutterChannel.beta,
110-
enabledForDartApps: false,
111-
enabledForFlutterAppsFallback: false,
112-
);
113-
114104
/// A set of all the boolean feature flags for debugging purposes.
115105
///
116106
/// When adding a new boolean flag, you are responsible for adding it to this
@@ -129,9 +119,7 @@ extension FeatureFlags on Never {
129119
///
130120
/// When adding a new Flutter channel flag, you are responsible for adding it
131121
/// to this map as well.
132-
static final _flutterChannelFlags = <FlutterChannelFeatureFlag>{
133-
wasmByDefault,
134-
};
122+
static final _flutterChannelFlags = <FlutterChannelFeatureFlag>{};
135123

136124
/// A helper to print the status of all the feature flags.
137125
static void debugPrintFeatureFlags({ConnectedApp? connectedApp}) {

0 commit comments

Comments
 (0)