Fix LINQ brainfart

Also tweak code alignment to use spaces rather than tabs
for alignment that doesn't affect indentation level.

Where(...).Count() > 0  ===>  Any(...)
This commit is contained in:
Iris Ward 2015-09-22 23:28:33 +01:00
parent d153c00c77
commit 33c3d8b2fc
1 changed files with 4 additions and 4 deletions

View File

@ -113,9 +113,9 @@ namespace BizHawk.Client.Common
{
var info = typeof(MovieImport).Module;
var importers = from t in info.GetTypes()
where typeof(IMovieImport).IsAssignableFrom(t)
&& TypeImportsExtension(t, ext)
select t;
where typeof(IMovieImport).IsAssignableFrom(t)
&& TypeImportsExtension(t, ext)
select t;
return importers;
}
@ -124,7 +124,7 @@ namespace BizHawk.Client.Common
{
var attrs = (ImportExtension[])t.GetCustomAttributes(typeof(ImportExtension), inherit: false);
if (attrs.Where(a => a.Extension.ToUpper() == ext.ToUpper()).Count() > 0)
if (attrs.Any(a => a.Extension.ToUpper() == ext.ToUpper()))
{
return true;
}