This commit is contained in:
Philip Dimitratos 2017-10-16 17:34:55 -07:00
Родитель 40deed01ae
Коммит 49143c1ff3
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -42,10 +42,8 @@ namespace Sia.Gateway.Protocol
var enumerableInterface = type.GetInterface(enumIntName
.Substring(0, enumIntName.Length - NumberOfCharactersInGenericTypeNotUsedByGetInterfaceMethod));
if (enumerableInterface is null) return false;
var canWrite = !(type.GetGenericArguments()[0].GetInterface(nameof(IDynamicDataSource)) is null);
return canWrite;
return !(type.GetGenericArguments()[0].GetInterface(nameof(IDynamicDataSource)) is null);
}
private object Deserialize(string serializedData) => JsonConvert.DeserializeObject(serializedData);