Skip to content

Commit

Permalink
Fix formatting issues with UseIdenticalMandatoryParametersDSC
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapil Borle committed Jul 6, 2017
1 parent 3036d40 commit d8cc876
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Rules/UseIdenticalMandatoryParametersDSC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ private bool IsNamedAttributeArgumentMandatory(NamedAttributeArgumentAst namedAt
isDSCClassCacheInitialized = true;
}

var importClassesMethod = typeof(DscClassCache).GetMethod("ImportClasses", BindingFlags.Public | BindingFlags.Static);
var importClassesMethod = typeof(DscClassCache).GetMethod(
"ImportClasses",
BindingFlags.Public | BindingFlags.Static);
if (importClassesMethod != null)
{
var parameters = new List<object>(new object[] { mofFilepath, moduleInfo, errors });
Expand Down

0 comments on commit d8cc876

Please sign in to comment.