Remove console print statement

This commit is contained in:
Alekhya Reddy 2020-04-02 18:03:40 -07:00
parent ad6ca65d4b
commit 57c616abfe

View File

@ -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;
}