Skip to content

Commit 8012a72

Browse files
committed
remove comment
1 parent 11c3afa commit 8012a72

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Shared/Dictionary/AdaptiveCapacityDictionary.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,6 @@ private void EnsureCapacitySlow(int capacity)
553553
}
554554
else
555555
{
556-
// Initial capacity is 5, grows to 10 once.
557556
capacity = _arrayStorage.Length == 0 ? DefaultArrayThreshold : _arrayStorage.Length * 2;
558557
var array = new KeyValuePair<TKey, TValue>[capacity];
559558
if (_count > 0)

0 commit comments

Comments
 (0)