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 f884061 commit 6893835Copy full SHA for 6893835
src/Cake.AzureDevOps/Boards/WorkItemTracking/AzureDevOpsWorkItem.cs
@@ -249,7 +249,7 @@ internal AzureDevOpsWorkItem(
249
/// <see cref="AzureDevOpsWorkItemSettings.ThrowExceptionIfWorkItemCouldNotBeFound"/> is set to <c>true</c>.</exception>
250
public IEnumerable<string> Tags => this.ValidateWorkItem()
251
? (IEnumerable<string>)this.GetField("System.Tags").Split("; ", StringSplitOptions.RemoveEmptyEntries)
252
- : Array.Empty<string>();
+ : [];
253
254
/// <summary>
255
/// Gets the id of the parent work item.
0 commit comments