aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Diagnostics/CommonProcess.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-02-02 19:04:10 -0500
committerGitHub <noreply@github.com>2019-02-02 19:04:10 -0500
commit32f393d57fd634ed9771078b5fbf87d4466a927c (patch)
tree522825aab3eb32cf3707d158463d26959d76a6a9 /Emby.Server.Implementations/Diagnostics/CommonProcess.cs
parent42d5a48491904ae4251e32c17da037a1a5ba77eb (diff)
parent1cdcace0618658d1e99e98c3f539baf3ae72ab14 (diff)
Merge pull request #764 from Bond-009/encoding
Remove dead code, made some functions properly async
Diffstat (limited to 'Emby.Server.Implementations/Diagnostics/CommonProcess.cs')
-rw-r--r--Emby.Server.Implementations/Diagnostics/CommonProcess.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Diagnostics/CommonProcess.cs b/Emby.Server.Implementations/Diagnostics/CommonProcess.cs
index 55539eafc..78b22bda3 100644
--- a/Emby.Server.Implementations/Diagnostics/CommonProcess.cs
+++ b/Emby.Server.Implementations/Diagnostics/CommonProcess.cs
@@ -105,7 +105,7 @@ namespace Emby.Server.Implementations.Diagnostics
{
return _process.WaitForExit(timeMs);
}
-
+
public Task<bool> WaitForExitAsync(int timeMs)
{
//Note: For this function to work correctly, the option EnableRisingEvents needs to be set to true.