Skip to content

Commit 1c2d9e8

Browse files
committed
Remove unnecessary spaces
1 parent bfd8dfe commit 1c2d9e8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private static void DeletePythonBinding()
5252
}
5353

5454
/// <summary>
55-
/// Save json and ISavable
55+
/// Save json and ISavable
5656
/// </summary>
5757
public static void Save()
5858
{
@@ -225,11 +225,11 @@ public static ICollection<PluginPair> ValidPluginsForQuery(Query query)
225225
{
226226
if (query is null)
227227
return Array.Empty<PluginPair>();
228-
228+
229229
if (!NonGlobalPlugins.ContainsKey(query.ActionKeyword))
230230
return GlobalPlugins;
231-
232-
231+
232+
233233
var plugin = NonGlobalPlugins[query.ActionKeyword];
234234
return new List<PluginPair>
235235
{
@@ -289,8 +289,8 @@ public static void UpdatePluginMetadata(List<Result> results, PluginMetadata met
289289
r.PluginID = metadata.ID;
290290
r.OriginQuery = query;
291291

292-
// ActionKeywordAssigned is used for constructing MainViewModel's query text auto-complete suggestions
293-
// Plugins may have multi-actionkeywords eg. WebSearches. In this scenario it needs to be overriden on the plugin level
292+
// ActionKeywordAssigned is used for constructing MainViewModel's query text auto-complete suggestions
293+
// Plugins may have multi-actionkeywords eg. WebSearches. In this scenario it needs to be overriden on the plugin level
294294
if (metadata.ActionKeywords.Count == 1)
295295
r.ActionKeywordAssigned = query.ActionKeyword;
296296
}
@@ -473,7 +473,7 @@ internal static void InstallPlugin(UserPlugin plugin, string zipFilePath, bool c
473473
// Unzip plugin files to temp folder
474474
var tempFolderPluginPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
475475
System.IO.Compression.ZipFile.ExtractToDirectory(zipFilePath, tempFolderPluginPath);
476-
476+
477477
if(!plugin.IsFromLocalInstallPath)
478478
File.Delete(zipFilePath);
479479

0 commit comments

Comments
 (0)