Skip to content

Commit 10a9d97

Browse files
authored
Fix PythiaOptions (#59565)
1 parent 3294cef commit 10a9d97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Workspaces/Core/Portable/ExternalAccess/Pythia/Api/PythiaOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ internal static class PythiaOptions
1717
{
1818
public const string LocalRegistryPath = @"Roslyn\Internal\OnOff\Features\";
1919

20-
public static readonly Option2<bool> ShowDebugInfo = new(
20+
public static readonly Option<bool> ShowDebugInfo = new(
2121
"InternalFeatureOnOffOptions", nameof(ShowDebugInfo), defaultValue: false,
2222
storageLocation: new LocalUserProfileStorageLocation(LocalRegistryPath + nameof(ShowDebugInfo)));
2323

24-
public static readonly Option2<bool> RemoveRecommendationLimit = new(
24+
public static readonly Option<bool> RemoveRecommendationLimit = new(
2525
"InternalFeatureOnOffOptions", nameof(RemoveRecommendationLimit), defaultValue: false,
2626
storageLocation: new LocalUserProfileStorageLocation(LocalRegistryPath + nameof(RemoveRecommendationLimit)));
2727
}

0 commit comments

Comments
 (0)