chore: formatting

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

View File

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