From a4fce2e7a18bd0340ccda284698191a46d7da904 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sun, 8 Dec 2024 23:06:06 -0500 Subject: [PATCH] Delete unused static field from List --- .../src/System/Collections/Generic/List.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs b/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs index 119f06ac9fecf5..2cc980619cf953 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs @@ -1184,8 +1184,6 @@ public bool TrueForAll(Predicate match) public struct Enumerator : IEnumerator, IEnumerator { - internal static IEnumerator? s_emptyEnumerator; - private readonly List _list; private int _index; private readonly int _version;