Skip to content

Commit 401f6f8

Browse files
authored
Remove 'internal' on setter (#11780)
2 parents 0e9cd77 + 958f2b3 commit 401f6f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Razor/src/Microsoft.VisualStudioCode.RazorExtension/Services/RazorMapSpansParams.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ namespace Microsoft.VisualStudioCode.RazorExtension.Services;
88
internal sealed class RazorMapSpansParams
99
{
1010
[JsonPropertyName("csharpDocument")]
11-
public required TextDocumentIdentifier CSharpDocument { get; internal set; }
11+
public required TextDocumentIdentifier CSharpDocument { get; set; }
1212

1313
[JsonPropertyName("ranges")]
14-
public required LspRange[] Ranges { get; internal set; }
14+
public required LspRange[] Ranges { get; set; }
1515
}

0 commit comments

Comments
 (0)