Skip to content

Commit 817e6b0

Browse files
authored
Enable nullable: System.Management.Automation.IArgumentCompleter (#14182)
1 parent 95ce064 commit 817e6b0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/System.Management.Automation/engine/CommandCompletion/ExtensibleCompletion.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public ArgumentCompleterAttribute(ScriptBlock scriptBlock)
5858
/// <summary>
5959
/// A type specified by the <see cref="ArgumentCompleterAttribute"/> must implement this interface.
6060
/// </summary>
61+
#nullable enable
6162
public interface IArgumentCompleter
6263
{
6364
/// <summary>
@@ -82,6 +83,7 @@ IEnumerable<CompletionResult> CompleteArgument(
8283
CommandAst commandAst,
8384
IDictionary fakeBoundParameters);
8485
}
86+
#nullable restore
8587

8688
/// <summary>
8789
/// </summary>

0 commit comments

Comments
 (0)