diff --git a/Penumbra/Collections/Manager/CollectionStorage.cs b/Penumbra/Collections/Manager/CollectionStorage.cs index 1f49e4e1..64341157 100644 --- a/Penumbra/Collections/Manager/CollectionStorage.cs +++ b/Penumbra/Collections/Manager/CollectionStorage.cs @@ -89,7 +89,7 @@ public class CollectionStorage : IReadOnlyList, IDisposable, ISer /// Starts at 1 because the empty collection gets Zero. public LocalCollectionId CurrentCollectionId => new(_currentCollectionIdValue); - private LocalCollectionId AllocateNextId () + private LocalCollectionId AllocateNextId() { var newLocalId = new LocalCollectionId(_currentCollectionIdValue); Interlocked.Increment(ref _currentCollectionIdValue);