Remove unnecessary code.

This commit is contained in:
zlsun
2014-06-16 14:08:11 +08:00
parent 12b03518ee
commit 6fdbc9cdfa
6 changed files with 4 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ namespace Wox.Plugin.SystemPlugins
protected override List<Result> QueryInternal(Query query)
{
if (string.IsNullOrEmpty(query.RawQuery) || query.RawQuery.EndsWith(" ") || query.RawQuery.Length <= 1) return new List<Result>();
if (query.RawQuery.EndsWith(" ") || query.RawQuery.Length <= 1) return new List<Result>();
List<Result> results = new List<Result>();