Skip to content

Commit d8cc876

Browse files
author
Kapil Borle
committed
Fix formatting issues with UseIdenticalMandatoryParametersDSC
1 parent 3036d40 commit d8cc876

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Rules/UseIdenticalMandatoryParametersDSC.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,9 @@ private IDictionary<string, string> GetKeys(string fileName)
216216
isDSCClassCacheInitialized = true;
217217
}
218218

219-
var importClassesMethod = typeof(DscClassCache).GetMethod("ImportClasses", BindingFlags.Public | BindingFlags.Static);
219+
var importClassesMethod = typeof(DscClassCache).GetMethod(
220+
"ImportClasses",
221+
BindingFlags.Public | BindingFlags.Static);
220222
if (importClassesMethod != null)
221223
{
222224
var parameters = new List<object>(new object[] { mofFilepath, moduleInfo, errors });

0 commit comments

Comments
 (0)