Unverified Commit c2cd4ef3 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] ensure unstable compiler features are not available on stable (#74526)

parent fa0880c3
...@@ -306,7 +306,7 @@ const Feature singleWidgetReload = Feature( ...@@ -306,7 +306,7 @@ const Feature singleWidgetReload = Feature(
enabledByDefault: false, enabledByDefault: false,
), ),
stable: FeatureChannelSetting( stable: FeatureChannelSetting(
available: true, available: false,
enabledByDefault: false, enabledByDefault: false,
), ),
); );
...@@ -329,7 +329,7 @@ const Feature experimentalInvalidationStrategy = Feature( ...@@ -329,7 +329,7 @@ const Feature experimentalInvalidationStrategy = Feature(
enabledByDefault: false, enabledByDefault: false,
), ),
stable: FeatureChannelSetting( stable: FeatureChannelSetting(
available: true, available: false,
enabledByDefault: false, enabledByDefault: false,
), ),
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment