Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ObjectPool
  • Loading branch information
BrennanConroy committed May 1, 2022
commit 7565ee2e54e174ec9c9f3da218fe7ea07b0da35f
2 changes: 1 addition & 1 deletion src/ObjectPool/src/LeakTrackingObjectPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public override void Return(T obj)
_inner.Return(obj);
}

private class Tracker : IDisposable
private sealed class Tracker : IDisposable
{
private readonly string _stack;
private bool _disposed;
Expand Down