Skip to content

Commit

Permalink
Remove redundant ReaderWriterLockSlim in LazyList<T>.
Browse files Browse the repository at this point in the history
  • Loading branch information
Washi1337 committed Nov 27, 2022
1 parent eb41d58 commit bebe5d6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/AsmResolver/Collections/LazyList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace AsmResolver.Collections
[DebuggerDisplay("Count = {" + nameof(Count) + "}")]
public abstract class LazyList<TItem> : IList<TItem>
{
private readonly ReaderWriterLockSlim _lock = new(LockRecursionPolicy.NoRecursion);
private readonly List<TItem> _items;

/// <summary>
Expand Down

0 comments on commit bebe5d6

Please sign in to comment.