From 57c616abfed5349f3e20e644ecaaf95d0e1dfc77 Mon Sep 17 00:00:00 2001 From: Alekhya Reddy Date: Thu, 2 Apr 2020 18:03:40 -0700 Subject: [PATCH] Remove console print statement --- .../Plugins/Wox.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/launcher/Plugins/Wox.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs b/src/modules/launcher/Plugins/Wox.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs index 23dc200635..fb7b6ffcd1 100644 --- a/src/modules/launcher/Plugins/Wox.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs +++ b/src/modules/launcher/Plugins/Wox.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs @@ -34,7 +34,6 @@ namespace Wox.Plugin.Indexer.SearchHelper // col 0 is our path in display format if (WDSResults.GetString(0) != null) { - //Console.WriteLine("{0}", WDSResults.GetString(0)); var result = new SearchResult { Path = WDSResults.GetString(0) }; yield return result; }