Since ArrayRange is now what the tree builder APIs expose, ArrayBuilder can be internal
This commit is contained in:
parent
9da3260eb7
commit
04fa5f4b71
|
|
@ -9,7 +9,7 @@ namespace Microsoft.Blazor.RenderTree
|
|||
/// <summary>
|
||||
/// Implements a list that uses an array of objects to store the elements.
|
||||
/// </summary>
|
||||
public class ArrayBuilder<T>
|
||||
internal class ArrayBuilder<T>
|
||||
{
|
||||
private const int MinCapacity = 10;
|
||||
private T[] _items;
|
||||
|
|
|
|||
Loading…
Reference in New Issue