Resharper cleanup

This commit is contained in:
JustArchi
2017-04-05 16:59:48 +02:00
parent 2199172244
commit 7c8d7b5ada
33 changed files with 332 additions and 223 deletions

View File

@@ -34,7 +34,9 @@ namespace ArchiSteamFarm {
[JsonProperty(Required = Required.DisallowNull)]
private readonly ConcurrentHashSet<IPEndPoint> Servers = new ConcurrentHashSet<IPEndPoint>();
public Task<IEnumerable<IPEndPoint>> FetchServerListAsync() => Task.FromResult<IEnumerable<IPEndPoint>>(Servers);
public Task<IEnumerable<IPEndPoint>> FetchServerListAsync() {
return Task.FromResult<IEnumerable<IPEndPoint>>(Servers);
}
public Task UpdateServerListAsync(IEnumerable<IPEndPoint> endPoints) {
if (endPoints == null) {