From 817faf6497f0db7c659c714596509d48965823ec Mon Sep 17 00:00:00 2001 From: Alex Peck Date: Sun, 17 Jul 2022 15:37:40 -0700 Subject: [PATCH] seal scopedcache --- BitFaster.Caching/ScopedCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BitFaster.Caching/ScopedCache.cs b/BitFaster.Caching/ScopedCache.cs index b746a0a9..4ee3bc4f 100644 --- a/BitFaster.Caching/ScopedCache.cs +++ b/BitFaster.Caching/ScopedCache.cs @@ -14,7 +14,7 @@ namespace BitFaster.Caching /// /// The type of keys in the cache. /// The type of values in the cache. - public class ScopedCache : IScopedCache where V : IDisposable + public sealed class ScopedCache : IScopedCache where V : IDisposable { private readonly ICache> cache;