Clean up some old files

This commit is contained in:
RaidMax
2019-07-17 12:29:51 -05:00
parent 68f6be23a6
commit 2542b7de12
15 changed files with 20 additions and 236 deletions

View File

@ -15,8 +15,8 @@
string[] getLinkedPropertyName(System.Reflection.PropertyInfo info)
{
var test = (info.GetCustomAttributes(false)
.Where(_attr => _attr.GetType() == typeof(ConfiguratinLinked))
.FirstOrDefault() as ConfiguratinLinked);
.Where(_attr => _attr.GetType() == typeof(ConfigurationLinked))
.FirstOrDefault() as ConfigurationLinked);
return test?.LinkedPropertyNames ?? new string[0];
}