Enable nullable: System.Management.Automation.IOutputProcessingState (#14175)

This commit is contained in:
Staffan Gustafsson 2020-12-11 06:58:51 +01:00 committed by GitHub
parent ab44bf4ae2
commit 9c75ba8b63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4520,9 +4520,10 @@ namespace System.Management.Automation
}
}
#nullable enable
internal interface IOutputProcessingState
{
event EventHandler<OutputProcessingStateEventArgs> OutputProcessingStateChanged;
event EventHandler<OutputProcessingStateEventArgs>? OutputProcessingStateChanged;
}
#endregion