From 692eb1301124fd800b50aea21590d39b3798da01 Mon Sep 17 00:00:00 2001 From: Hongtao Zhang Date: Thu, 15 Feb 2024 22:15:22 -0600 Subject: [PATCH] remove some duplicate code --- Flow.Launcher.Core/Plugin/NodePluginV2.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/NodePluginV2.cs b/Flow.Launcher.Core/Plugin/NodePluginV2.cs index 9fc9ccac3..d84a72864 100644 --- a/Flow.Launcher.Core/Plugin/NodePluginV2.cs +++ b/Flow.Launcher.Core/Plugin/NodePluginV2.cs @@ -22,8 +22,6 @@ namespace Flow.Launcher.Core.Plugin public override async Task InitAsync(PluginInitContext context) { StartInfo.ArgumentList.Add(context.CurrentPluginMetadata.ExecuteFilePath); - StartInfo.ArgumentList.Add(string.Empty); - StartInfo.WorkingDirectory = context.CurrentPluginMetadata.PluginDirectory; await base.InitAsync(context); } }