From 1d3ab39dca4919b96052d943b4ac3eccee0cdf54 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Mon, 21 Jul 2025 16:24:23 +0800 Subject: [PATCH] Use () => instead of delegate --- Flow.Launcher.Core/Plugin/PluginManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs index 89b4e65e4..fe73a763b 100644 --- a/Flow.Launcher.Core/Plugin/PluginManager.cs +++ b/Flow.Launcher.Core/Plugin/PluginManager.cs @@ -236,7 +236,7 @@ namespace Flow.Launcher.Core.Plugin { var failedPlugins = new ConcurrentQueue(); - var InitTasks = allPlugins.Select(pair => Task.Run(async delegate + var InitTasks = allPlugins.Select(pair => Task.Run(async () => { try {