Skip to content

Commit 8cb2f51

Browse files
committed
Remove experimental feature requirement for source edit
1 parent db48e47 commit 8cb2f51

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/AppInstallerCLICore/Commands/SourceCommand.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,6 @@ namespace AppInstaller::CLI
359359
void SourceEditCommand::ExecuteInternal(Context& context) const
360360
{
361361
context <<
362-
Workflow::EnsureFeatureEnabled(Settings::ExperimentalFeature::Feature::SourceEdit) <<
363362
Workflow::EnsureRunningAsAdmin <<
364363
Workflow::GetSourceListWithFilter <<
365364
Workflow::EditSources;

src/AppInstallerCLICore/Commands/SourceCommand.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ namespace AppInstaller::CLI
124124

125125
struct SourceEditCommand final : public Command
126126
{
127-
SourceEditCommand(std::string_view parent) : Command("edit", { "config", "set" }, parent, Settings::ExperimentalFeature::Feature::SourceEdit) {}
127+
SourceEditCommand(std::string_view parent) : Command("edit", { "config", "set" }, parent) {}
128128

129129
std::vector<Argument> GetArguments() const override;
130130

0 commit comments

Comments
 (0)