From 991b89ff441714efc2c1214b1a58583b5c376506 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Fri, 13 Aug 2021 15:56:58 +0800 Subject: [PATCH] Remove Legacy debug in sync request --- Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs index 9d9a0186c..65977219d 100644 --- a/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs +++ b/Flow.Launcher.Core/Plugin/JsonRPCPlugin.cs @@ -198,15 +198,6 @@ namespace Flow.Launcher.Core.Plugin return string.Empty; } - if (result.StartsWith("DEBUG:")) - { - MessageBox.Show(new Form - { - TopMost = true - }, result.Substring(6)); - return string.Empty; - } - return result; } catch (Exception e)