From f6b17023dc059fda8fd83e30a2831cee89d2b875 Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Thu, 15 Feb 2024 22:14:03 -0600 Subject: [PATCH] remove redundant information to merge into the process stream plugin --- Flow.Launcher.Core/Plugin/ExecutablePluginV2.cs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/ExecutablePluginV2.cs b/Flow.Launcher.Core/Plugin/ExecutablePluginV2.cs index ee1b315c2..128b28638 100644 --- a/Flow.Launcher.Core/Plugin/ExecutablePluginV2.cs +++ b/Flow.Launcher.Core/Plugin/ExecutablePluginV2.cs @@ -12,15 +12,7 @@ namespace Flow.Launcher.Core.Plugin public ExecutablePluginV2(string filename) { - StartInfo = new ProcessStartInfo - { - FileName = filename, - UseShellExecute = false, - CreateNoWindow = true, - RedirectStandardOutput = true, - RedirectStandardError = true - }; + StartInfo = new ProcessStartInfo { FileName = filename }; } - } }