Since ArrayRange is now what the tree builder APIs expose, ArrayBuilder can be internal

This commit is contained in:
Steve Sanderson 2018-01-24 08:58:16 -08:00
parent 9da3260eb7
commit 04fa5f4b71
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace Microsoft.Blazor.RenderTree
/// <summary> /// <summary>
/// Implements a list that uses an array of objects to store the elements. /// Implements a list that uses an array of objects to store the elements.
/// </summary> /// </summary>
public class ArrayBuilder<T> internal class ArrayBuilder<T>
{ {
private const int MinCapacity = 10; private const int MinCapacity = 10;
private T[] _items; private T[] _items;