Skip to content

Commit 7aca82a

Browse files
authored
Formatting
1 parent a969208 commit 7aca82a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

powershell-adapter/psDscAdapter/psDscAdapter.psm1

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -485,12 +485,10 @@ function Invoke-DscOperation {
485485
}
486486
'Export' {
487487
$methods = $t.GetMethods() | Where-Object { $_.Name -eq 'Export' }
488-
$method = foreach ($m in $methods)
489-
{
490-
if ($m.GetParameters().Count -eq 0)
491-
{
488+
$method = foreach ($m in $methods) {
489+
if ($m.GetParameters().Count -eq 0) {
492490
$m
493-
break
491+
break
494492
}
495493
}
496494

0 commit comments

Comments
 (0)