Browse Source
Merge pull request #1455 from worldbeater/patch-1
Remove dollar!
pull/1480/head
Steven Kirk
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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 |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|