Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marklauter committed Jul 18, 2024
1 parent 321a2ba commit 1f08ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pool/Pool{TPoolItem}.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ private bool TryDequeue(out PoolItem item)
[SuppressMessage("IDisposableAnalyzers.Correctness", "IDISP007:Don't dispose injected", Justification = "it's all private to pool")]
private void RemoveItem(TPoolItem item)
{
lock(this)
lock (this)
{
--ItemsAllocated;
}
Expand Down

0 comments on commit 1f08ae5

Please sign in to comment.