From 48745867730e99ea5235a94c8a3d5d495ca60fc6 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 6 Jul 2025 20:15:33 +0800 Subject: [PATCH] Fix build issue --- Flow.Launcher.Core/Plugin/PluginManager.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs index cc7fa2bc1..34e6887fd 100644 --- a/Flow.Launcher.Core/Plugin/PluginManager.cs +++ b/Flow.Launcher.Core/Plugin/PluginManager.cs @@ -476,17 +476,6 @@ namespace Flow.Launcher.Core.Plugin return _homePlugins.Where(p => !PluginModified(p.Metadata.ID)).Any(p => p.Metadata.ID == id); } - public static IList GetResultUpdatePlugin() - { - return _resultUpdatePlugin.Where(p => !PluginModified(p.Metadata.ID)).ToList(); - } - - public static IList GetTranslationPlugins() - { - // Here we still return the modified plugins to update the possible string resources - return _translationPlugins.ToList(); - } - public static Dictionary> GetPluginHotkeyInfo() { return _pluginHotkeyInfo;