sorry, haskell slipping through.
This commit is contained in:
mayo 2025-11-01 17:26:04 -04:00
parent 3f8199f1cd
commit c42f89277c
No known key found for this signature in database
GPG key ID: 5B138E78344184A6

View file

@ -89,7 +89,7 @@ public class CollectionStorage : IReadOnlyList<ModCollection>, IDisposable, ISer
/// <remarks> Starts at 1 because the empty collection gets Zero. </remarks>
public LocalCollectionId CurrentCollectionId => new(_currentCollectionIdValue);
private LocalCollectionId AllocateNextId ()
private LocalCollectionId AllocateNextId()
{
var newLocalId = new LocalCollectionId(_currentCollectionIdValue);
Interlocked.Increment(ref _currentCollectionIdValue);