Skip to content

Commit f6b1702

Browse files
committed
remove redundant information to merge into the process stream plugin
1 parent a27d533 commit f6b1702

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

Flow.Launcher.Core/Plugin/ExecutablePluginV2.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,7 @@ internal sealed class ExecutablePluginV2 : ProcessStreamPluginV2
1212

1313
public ExecutablePluginV2(string filename)
1414
{
15-
StartInfo = new ProcessStartInfo
16-
{
17-
FileName = filename,
18-
UseShellExecute = false,
19-
CreateNoWindow = true,
20-
RedirectStandardOutput = true,
21-
RedirectStandardError = true
22-
};
15+
StartInfo = new ProcessStartInfo { FileName = filename };
2316
}
24-
2517
}
2618
}

0 commit comments

Comments
 (0)