Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion BitFaster.Caching/ScopedCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace BitFaster.Caching
/// </summary>
/// <typeparam name="K">The type of keys in the cache.</typeparam>
/// <typeparam name="V">The type of values in the cache.</typeparam>
public class ScopedCache<K, V> : IScopedCache<K, V> where V : IDisposable
public sealed class ScopedCache<K, V> : IScopedCache<K, V> where V : IDisposable
{
private readonly ICache<K, Scoped<V>> cache;

Expand Down