From fb0f195656f7bd7dd9da756aeba5ef014bcf047d Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Tue, 20 Aug 2024 17:59:36 +0200 Subject: [PATCH] Update FileDbCache.cs --- Caches/FileDbCache/FileDbCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Caches/FileDbCache/FileDbCache.cs b/Caches/FileDbCache/FileDbCache.cs index ba6aec9e..723f332c 100644 --- a/Caches/FileDbCache/FileDbCache.cs +++ b/Caches/FileDbCache/FileDbCache.cs @@ -16,7 +16,7 @@ namespace MapControl.Caching /// IDistributedCache implementation based on FileDb, a free and simple No-SQL database by EzTools Software. /// See http://www.eztools-software.com/tools/filedb/. /// - public class FileDbCache : IDistributedCache, IDisposable + public sealed class FileDbCache : IDistributedCache, IDisposable { private const string keyField = "Key"; private const string valueField = "Value";