From 2cc4e84c631aabfcafe49f284fc9851c0080e094 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Wed, 11 Nov 2020 20:40:45 +1100 Subject: [PATCH] alignment no logic changes --- Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs b/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs index c7dbc1ace..092418b6c 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs @@ -331,10 +331,10 @@ namespace Flow.Launcher.Plugin.Program.Programs .Where(t1 => !disabledProgramsList.Any(x => x.UniqueIdentifier == t1)) .Distinct() .Select(x => Extension(x) switch - { - ShortcutExtension => LnkProgram(x), - _ => Win32Program(x) - }).Where(x => x.Valid); + { + ShortcutExtension => LnkProgram(x), + _ => Win32Program(x) + }).Where(x => x.Valid); return programs; }