Skip to content

Commit 4b3902a

Browse files
authored
Delete unused static field from List (#110515)
1 parent f8f713e commit 4b3902a

File tree

1 file changed

+0
-2
lines changed
  • src/libraries/System.Private.CoreLib/src/System/Collections/Generic

1 file changed

+0
-2
lines changed

src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1184,8 +1184,6 @@ public bool TrueForAll(Predicate<T> match)
11841184

11851185
public struct Enumerator : IEnumerator<T>, IEnumerator
11861186
{
1187-
internal static IEnumerator<T>? s_emptyEnumerator;
1188-
11891187
private readonly List<T> _list;
11901188
private int _index;
11911189
private readonly int _version;

0 commit comments

Comments
 (0)