From 7a52baf18f881baf10a330f7927210bd0e83be3f Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Sat, 22 Sep 2018 16:52:45 -0700 Subject: [PATCH] Fix #2054 - make TagHelperResolutionResult internal This type isn't used by WTE anymore. --- .../TagHelperResolutionResult.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolutionResult.cs b/src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolutionResult.cs index 0e8c7b19ef..581892a9fb 100644 --- a/src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolutionResult.cs +++ b/src/Microsoft.CodeAnalysis.Razor.Workspaces/TagHelperResolutionResult.cs @@ -7,9 +7,9 @@ using Microsoft.AspNetCore.Razor.Language; namespace Microsoft.CodeAnalysis.Razor { - public sealed class TagHelperResolutionResult + internal sealed class TagHelperResolutionResult { - internal static TagHelperResolutionResult Empty = new TagHelperResolutionResult(Array.Empty(), Array.Empty()); + internal static readonly TagHelperResolutionResult Empty = new TagHelperResolutionResult(Array.Empty(), Array.Empty()); public TagHelperResolutionResult(IReadOnlyList descriptors, IReadOnlyList diagnostics) {