We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e309dfc commit 364d6dcCopy full SHA for 364d6dc
1 file changed
source/Handlebars/Collections/WeakCollection.cs
@@ -13,6 +13,8 @@ public class WeakCollection<T> : IEnumerable<T> where T : class
13
14
public void Add(T value)
15
{
16
+ // Need a way to reset _firstAvailableIndex periodically
17
+
18
for (var index = _firstAvailableIndex; index < _store.Count; index++)
19
20
if (_store[index] == null)
0 commit comments