From babffe907f2a320b6e05bfe798c32d07d96c71d2 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sun, 22 Jan 2023 12:59:32 +0800 Subject: [PATCH] Disable unused import warning --- Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs index a6cf0755c..cfcaaa44d 100644 --- a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs +++ b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs @@ -1,9 +1,9 @@ using System; using System.Diagnostics; using System.IO; -#if !DEBUG +#pragma warning disable IDE0005 using System.Windows; -#endif +#pragma warning restore IDE0005 namespace Flow.Launcher.Plugin.SharedCommands {