Fix #2054 - make TagHelperResolutionResult internal

This type isn't used by WTE anymore.
This commit is contained in:
Ryan Nowak 2018-09-22 16:52:45 -07:00
parent 3f916e5f28
commit 7a52baf18f
1 changed files with 2 additions and 2 deletions

View File

@ -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<TagHelperDescriptor>(), Array.Empty<RazorDiagnostic>());
internal static readonly TagHelperResolutionResult Empty = new TagHelperResolutionResult(Array.Empty<TagHelperDescriptor>(), Array.Empty<RazorDiagnostic>());
public TagHelperResolutionResult(IReadOnlyList<TagHelperDescriptor> descriptors, IReadOnlyList<RazorDiagnostic> diagnostics)
{