From 04fa5f4b716f30c298d109d4293124d760643d21 Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Wed, 24 Jan 2018 08:58:16 -0800 Subject: [PATCH] Since ArrayRange is now what the tree builder APIs expose, ArrayBuilder can be internal --- src/Microsoft.Blazor/RenderTree/ArrayBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Blazor/RenderTree/ArrayBuilder.cs b/src/Microsoft.Blazor/RenderTree/ArrayBuilder.cs index d46bb5648d..9252ccf4a1 100644 --- a/src/Microsoft.Blazor/RenderTree/ArrayBuilder.cs +++ b/src/Microsoft.Blazor/RenderTree/ArrayBuilder.cs @@ -9,7 +9,7 @@ namespace Microsoft.Blazor.RenderTree /// /// Implements a list that uses an array of objects to store the elements. /// - public class ArrayBuilder + internal class ArrayBuilder { private const int MinCapacity = 10; private T[] _items;