8000 fix codefactor · PowerShell/PowerShell@9175168 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9175168

Browse files
committed
fix codefactor
1 parent 9456841 commit 9175168

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/System.Management.Automation/engine/LanguagePrimitives.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4692,7 +4692,8 @@ internal static PSObject SetObjectProperties(object o, IDictionary properties, T
46924692
}
46934693

46944694
// treat AutomationNull.Value as null for consistency
4695-
if (propValue == AutomationNull.Value) {
4695+
if (propValue == AutomationNull.Value)
4696+
{
46964697
propValue = null;
46974698
}
46984699

0 commit comments

Comments
 (0)
0