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

@@ -29,7 +29,9 @@ using Newtonsoft.Json.Linq;
namespace ArchiSteamFarm {
internal sealed class IPAddressConverter : JsonConverter {
public override bool CanConvert(Type objectType) => objectType == typeof(IPAddress);
public override bool CanConvert(Type objectType) {
return objectType == typeof(IPAddress);
}
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) {
JToken token = JToken.Load(reader);