You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Build/Collections/RetrievableEntryHashSet/HashSet.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -366,7 +366,7 @@ public bool Remove(string item)
366
366
367
367
Debug.Assert((StartOfFreeList-_freeList)<0,"shouldn't underflow because max hashtable length is MaxPrimeArrayLength = 0x7FEFFFFD(2146435069) _freelist underflow threshold 2147483646");
368
368
entry.Next=StartOfFreeList-_freeList;
369
-
entry.Value=default!;
369
+
entry.Value=default;
370
370
371
371
_freeList=i;
372
372
_freeCount++;
@@ -441,7 +441,7 @@ public virtual void OnDeserialization(object sender)
0 commit comments