Code review

This commit is contained in:
JustArchi
2018-12-14 22:27:50 +01:00
parent c95653e72b
commit 39fb21cc83
3 changed files with 11 additions and 8 deletions

View File

@@ -22,7 +22,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Threading;
namespace ArchiSteamFarm.Collections {
@@ -198,9 +197,7 @@ namespace ArchiSteamFarm.Collections {
}
}
[SuppressMessage("ReSharper", "AssignNullToNotNullAttribute")]
void ICollection<T>.Add(T item) => Add(item);
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();
internal void ReplaceWith(IEnumerable<T> other) {