From 92a1f80ee09b6625e077696f901407bb3974f034 Mon Sep 17 00:00:00 2001 From: Theodore Tsirpanis Date: Thu, 13 Oct 2022 00:45:11 +0300 Subject: [PATCH] Remove a potentially unclear comment. --- .../Reflection/Internal/Utilities/EnumerableExtensions.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/libraries/System.Reflection.Metadata/src/System/Reflection/Internal/Utilities/EnumerableExtensions.cs b/src/libraries/System.Reflection.Metadata/src/System/Reflection/Internal/Utilities/EnumerableExtensions.cs index afcadf4f0835f..9df0d3951fa09 100644 --- a/src/libraries/System.Reflection.Metadata/src/System/Reflection/Internal/Utilities/EnumerableExtensions.cs +++ b/src/libraries/System.Reflection.Metadata/src/System/Reflection/Internal/Utilities/EnumerableExtensions.cs @@ -15,9 +15,6 @@ internal static class EnumerableExtensions { public static T? FirstOrDefault(this ImmutableArray collection, Func predicate) { - // Despite being on the System.Linq namespace, this function resides - // in the System.Collections.Immutable assembly and avoids importing - // LINQ elsewhere. return ImmutableArrayExtensions.FirstOrDefault(collection, predicate); }