aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Extensions
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-08-04 14:40:09 +0200
committerBond_009 <bond.009@outlook.com>2021-08-04 14:40:09 +0200
commitf1f72c3060ed9c8ccd665fb86d8ddfb5e6836056 (patch)
tree3fe4319edcc849fc2b72316ddfef951aa9360df5 /MediaBrowser.Common/Extensions
parent008c6a843ec832ec201db5ce8ca30d2d165f2d24 (diff)
Minor improvements
Diffstat (limited to 'MediaBrowser.Common/Extensions')
-rw-r--r--MediaBrowser.Common/Extensions/ProcessExtensions.cs2
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())