From 22d97588fa1448f09e394a3271ced359be65739d Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 23 Nov 2023 20:30:23 -0500 Subject: [PATCH] Nullify `IProcessExecutor` --- src/Tgstation.Server.Host/System/IProcessExecutor.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Tgstation.Server.Host/System/IProcessExecutor.cs b/src/Tgstation.Server.Host/System/IProcessExecutor.cs index a0418aea0d..fe51ce451b 100644 --- a/src/Tgstation.Server.Host/System/IProcessExecutor.cs +++ b/src/Tgstation.Server.Host/System/IProcessExecutor.cs @@ -1,6 +1,4 @@ -#nullable disable - -namespace Tgstation.Server.Host.System +namespace Tgstation.Server.Host.System { /// /// For launching '. @@ -20,8 +18,8 @@ namespace Tgstation.Server.Host.System IProcess LaunchProcess( string fileName, string workingDirectory, - string arguments = null, - string fileRedirect = null, + string? arguments = null, + string? fileRedirect = null, bool readStandardHandles = false, bool noShellExecute = false);