Skip to content

Commit

Permalink
[xharness] Remove a redundant ToArray.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne authored and mandel-macaque committed Oct 21, 2020
1 parent 137fe63 commit 0eeecdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/xharness/Harness.cs
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ int ConfigureIOS ()
foreach (var monoNativeInfo in IOSTestProjects.Where (x => x.MonoNativeInfo != null).Select (x => x.MonoNativeInfo))
monoNativeInfo.Convert ();

foreach (var proj in IOSTestProjects.Where ((v) => v.GenerateVariations).ToArray ()) {
foreach (var proj in IOSTestProjects.Where ((v) => v.GenerateVariations)) {
var file = proj.Path;

if (!File.Exists (file)) {
Expand Down

0 comments on commit 0eeecdd

Please sign in to comment.