Remove useless blank lines

This commit is contained in:
Jack251970 2025-02-21 11:10:16 +08:00
parent 1a54eed7ed
commit 6e4d9a5e61
3 changed files with 0 additions and 4 deletions

View file

@ -229,7 +229,6 @@ namespace Flow.Launcher.Core.Plugin
if (!NonGlobalPlugins.ContainsKey(query.ActionKeyword))
return GlobalPlugins;
var plugin = NonGlobalPlugins[query.ActionKeyword];
return new List<PluginPair>
{

View file

@ -43,7 +43,6 @@ namespace Flow.Launcher.Plugin
/// </summary>
public const string ActionKeywordSeparator = ";";
/// <summary>
/// Wildcard action keyword. Plugins using this value will be queried on every search.
/// </summary>

View file

@ -1118,7 +1118,6 @@ namespace Flow.Launcher.ViewModel
SearchIconVisibility = Visibility.Visible;
}
if (query.ActionKeyword == Plugin.Query.GlobalPluginWildcardSign)
{
// Wait 45 millisecond for query change in global query
@ -1145,7 +1144,6 @@ namespace Flow.Launcher.ViewModel
true => Task.CompletedTask
}).ToArray();
try
{
// Check the code, WhenAll will translate all type of IEnumerable or Collection to Array, so make an array at first