changed to any()

This commit is contained in:
Haroon
2013-12-01 11:01:55 +00:00
parent e8722fe2cb
commit 619f17e183

View File

@@ -64,7 +64,7 @@ namespace Octokit
}
set
{
if (value != null && value.Count() > 0)
if (value != null && value.Any())
_inQualifier = value.Distinct().ToList();
}
}