Browse Source

Merge pull request #1455 from worldbeater/patch-1

Remove dollar!
pull/1480/head
Steven Kirk 8 years ago
committed by GitHub
parent
commit
8427e1a34b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/Avalonia.Base/Collections/AvaloniaDictionary.cs

4
src/Avalonia.Base/Collections/AvaloniaDictionary.cs

@ -117,7 +117,7 @@ namespace Avalonia.Collections
_inner = new Dictionary<TKey, TValue>(); _inner = new Dictionary<TKey, TValue>();
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Count")); PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Count"));
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs($"Item[]")); PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Item[]"));
if (CollectionChanged != null) if (CollectionChanged != null)
@ -222,4 +222,4 @@ namespace Avalonia.Collections
} }
} }
} }
} }

Loading…
Cancel
Save