Browse Source

Merge branch 'master' into refactor/remove-propertyvisitor

pull/8022/head
Jumar Macato 4 years ago
committed by GitHub
parent
commit
a68bda04e1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/Avalonia.Base/Utilities/WeakHashList.cs

4
src/Avalonia.Base/Utilities/WeakHashList.cs

@ -104,8 +104,10 @@ internal class WeakHashList<T> where T : class
if (existing!.TryGetTarget(out var target))
Add(target);
}
_arr = null;
Add(item);
_arr = null;
}
public void Remove(T item)

Loading…
Cancel
Save