From c42f89277c2ced54f4cc81607edbabfd1dad6c42 Mon Sep 17 00:00:00 2001 From: mayo Date: Sat, 1 Nov 2025 17:26:04 -0400 Subject: [PATCH] lint sorry, haskell slipping through. --- Penumbra/Collections/Manager/CollectionStorage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);