diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-08-04 18:40:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-04 18:40:13 +0200 |
| commit | 2521a13d7d8df3bfa5291386ba4389469f02ade8 (patch) | |
| tree | 5e3ec6d727ecf8b728b1931bce25f8d19769f821 /MediaBrowser.Common/Extensions/ProcessExtensions.cs | |
| parent | 1b8eb1aefe2a10b9671e801e8b1feeb8e2362c87 (diff) | |
| parent | f1f72c3060ed9c8ccd665fb86d8ddfb5e6836056 (diff) | |
Merge pull request #6388 from Bond-009/minor16
Minor improvements
Diffstat (limited to 'MediaBrowser.Common/Extensions/ProcessExtensions.cs')
| -rw-r--r-- | MediaBrowser.Common/Extensions/ProcessExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Extensions/ProcessExtensions.cs b/MediaBrowser.Common/Extensions/ProcessExtensions.cs index c74787122..08e01bfd6 100644 --- a/MediaBrowser.Common/Extensions/ProcessExtensions.cs +++ b/MediaBrowser.Common/Extensions/ProcessExtensions.cs @@ -40,7 +40,7 @@ namespace MediaBrowser.Common.Extensions // Add an event handler for the process exit event var tcs = new TaskCompletionSource<bool>(); - process.Exited += (sender, args) => tcs.TrySetResult(true); + process.Exited += (_, _) => tcs.TrySetResult(true); // Return immediately if the process has already exited if (process.HasExitedSafe()) |
