Add init time and query time to setting view

This commit is contained in:
qianlifeng
2015-02-05 00:03:35 +08:00
parent 1d3f1fd7d0
commit fa53bce27a
8 changed files with 49 additions and 20 deletions

View File

@@ -21,9 +21,6 @@ namespace Wox.Plugin.CMD
public List<Result> Query(Query query)
{
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
List<Result> results = new List<Result>();
List<Result> pushedResults = new List<Result>();
if (query.Search == ">")
@@ -80,8 +77,6 @@ namespace Wox.Plugin.CMD
catch (Exception) { }
}
stopwatch.Stop();
DebugHelper.WriteLine("CMD:" + stopwatch.ElapsedMilliseconds + "ms");
return results;
}