chore: formatting

This commit is contained in:
Drew Tingen
2019-08-07 13:30:55 -04:00
parent edb5534b9d
commit 02e6fe9f8c

View File

@@ -223,12 +223,12 @@ namespace ICD.Common.Utils
try
{
if (parameters.Length == 0)
return Activator.CreateInstance(type);
if (parameters.Length == 0)
return Activator.CreateInstance(type);
ConstructorInfo constructor = GetConstructor(type, parameters);
ConstructorInfo constructor = GetConstructor(type, parameters);
return constructor.Invoke(parameters);
}
catch (TypeLoadException e)