From 33c3d8b2fc6f61c0dd5a392782271e0b521bb6da Mon Sep 17 00:00:00 2001 From: Iris Ward Date: Tue, 22 Sep 2015 23:28:33 +0100 Subject: [PATCH] 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(...) --- BizHawk.Client.Common/movie/import/MovieImport.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.Common/movie/import/MovieImport.cs b/BizHawk.Client.Common/movie/import/MovieImport.cs index 794f30b8c5..94059338f6 100644 --- a/BizHawk.Client.Common/movie/import/MovieImport.cs +++ b/BizHawk.Client.Common/movie/import/MovieImport.cs @@ -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; }