Skip to content

Commit aeaf220

Browse files
committed
[List] Housekeeping.
1 parent edd59cc commit aeaf220

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/StructLinq.BCL/List/ListEnumerable.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ namespace StructLinq.BCL.List
77
{
88
public struct ListEnumerable<T> : IStructCollection<T, ArrayStructEnumerator<T>>
99
{
10-
private readonly List<T> list;
1110
private readonly ListLayout<T> layout;
1211
private int count;
1312
private int start;
1413

1514
internal ListEnumerable(List<T> list, int start, int count)
1615
{
17-
this.list = list;
1816
layout = Unsafe.As<List<T>, ListLayout<T>>(ref list);
1917
this.count = count;
2018
this.start = start;

0 commit comments

Comments
 (0)