remove redundant information to merge into the process stream plugin

This commit is contained in:
Hongtao Zhang 2024-02-15 22:14:03 -06:00
parent a27d5336df
commit f6b17023dc

View file

@ -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 };
}
}
}