Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused option #75494

Merged
merged 2 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -290,14 +290,6 @@
</StackPanel>
</GroupBox>

<GroupBox x:Uid="ExtractMethodGroupBox"
Header="{x:Static local:AdvancedOptionPageStrings.Option_ExtractMethod}">
<StackPanel>
<CheckBox x:Name="DontPutOutOrRefOnStruct"
Content="{x:Static local:AdvancedOptionPageStrings.Option_DontPutOutOrRefOnStruct}" />
</StackPanel>
</GroupBox>

<GroupBox x:Uid="Implement_Interface_or_Abstract_Class_GroupBox"
Header="{x:Static local:AdvancedOptionPageStrings.Option_Implement_Interface_or_Abstract_Class}">

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
using Microsoft.CodeAnalysis.Editor.InlineRename;
using Microsoft.CodeAnalysis.Editor.Shared.Options;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.ExtractMethod;
using Microsoft.CodeAnalysis.Features.EmbeddedLanguages.Json.LanguageServices;
using Microsoft.CodeAnalysis.Features.EmbeddedLanguages.RegularExpressions.LanguageServices;
using Microsoft.CodeAnalysis.Host;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,6 @@ public static string Option_Underline_reassigned_variables
public static string Option_Strike_out_obsolete_symbols
=> ServicesVSResources.Strike_out_obsolete_symbols;

public static string Option_DontPutOutOrRefOnStruct
=> CSharpVSResources.Don_t_put_ref_or_out_on_custom_struct;
Cosifne marked this conversation as resolved.
Show resolved Hide resolved

public static string Option_EditorHelp
=> CSharpVSResources.Editor_Help;

Expand All @@ -168,9 +165,6 @@ public static string Option_EnableHighlightReferences
public static string Option_EnterOutliningMode
=> CSharpVSResources.Enter_outlining_mode_when_files_open;

public static string Option_ExtractMethod
=> CSharpVSResources.Extract_Method;

public static string Option_Implement_Interface_or_Abstract_Class
=> ServicesVSResources.Implement_Interface_or_Abstract_Class;

Expand Down
Loading