mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Misc
This commit is contained in:
parent
5867a351a8
commit
2dc853ebfc
1 changed files with 0 additions and 1 deletions
|
@ -59,7 +59,6 @@ public sealed class ObservableConcurrentDictionary<TKey, TValue> : IDictionary<T
|
|||
|
||||
set {
|
||||
ArgumentNullException.ThrowIfNull(key);
|
||||
ArgumentNullException.ThrowIfNull(value);
|
||||
|
||||
if (BackingDictionary.TryGetValue(key, out TValue? savedValue) && EqualityComparer<TValue>.Default.Equals(savedValue, value)) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue