Skip to content

Commit

Permalink
Update FIFOSet.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Oct 23, 2019
1 parent 621c4e3 commit 051b7c1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions neo/IO/Caching/FIFOSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public bool Add(T item)
if (removeCount == maxCapacity)
{
_lastEntry = _firstEntry = null;
_count = 0;
}
else
{
Expand Down

0 comments on commit 051b7c1

Please sign in to comment.