Skip to content

Commit

Permalink
FailedWorkList: Remove ".ToArray()"
Browse files Browse the repository at this point in the history
  • Loading branch information
ZjzMisaka committed Dec 5, 2023
1 parent 355e257 commit 0e277fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PowerThreadPool/PowerThreadPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public IEnumerable<string> FailedWorkList
{
get
{
return failedWorkSet.ToArray();
return failedWorkSet;
}
}

Expand Down

0 comments on commit 0e277fa

Please sign in to comment.