Skip to content

Commit 1d3ab39

Browse files
committed
Use () => instead of delegate
1 parent 35c8e39 commit 1d3ab39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ public static async Task InitializePluginsAsync(List<PluginPair> allPlugins, IRe
236236
{
237237
var failedPlugins = new ConcurrentQueue<PluginPair>();
238238

239-
var InitTasks = allPlugins.Select(pair => Task.Run(async delegate
239+
var InitTasks = allPlugins.Select(pair => Task.Run(async () =>
240240
{
241241
try
242242
{

0 commit comments

Comments
 (0)