We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1ad82c commit a128514Copy full SHA for a128514
PSModuleDevelopment/functions/assembly/Find-PSMDType.ps1
@@ -118,7 +118,7 @@
118
if ($boundEnum -and ($Enum -ne $type.IsEnum)) { continue }
119
if ($InheritsFrom -and ($type.BaseType.FullName -notlike $InheritsFrom)) { continue }
120
if ($Attribute -and ($type.CustomAttributes.AttributeType.Name -notlike $Attribute)) { continue }
121
- if ($boundStatic -and -not($type.IsAbstract -and $type.IsSealed)) { continue }
+ if ($boundStatic -and -not($type.IsAbstract -and $type.IsSealed)) { continue }
122
123
$type
124
}
0 commit comments