From f1afce7fab141d9f91d76fa51d4dd4643c1e8e07 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Tue, 17 Feb 2026 22:04:27 -0600 Subject: [PATCH] Removed unused fields and imports --- KfChatDotNetBot/Services/ConversationContextManager.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/KfChatDotNetBot/Services/ConversationContextManager.cs b/KfChatDotNetBot/Services/ConversationContextManager.cs index f3068e0..f125d7b 100644 --- a/KfChatDotNetBot/Services/ConversationContextManager.cs +++ b/KfChatDotNetBot/Services/ConversationContextManager.cs @@ -1,9 +1,7 @@ -using System.Collections.Concurrent; +using System.Text.Json; using KfChatDotNetBot.Settings; -using Newtonsoft.Json; using NLog; using StackExchange.Redis; -using JsonSerializer = System.Text.Json.JsonSerializer; namespace KfChatDotNetBot.Services; @@ -35,8 +33,6 @@ public class ConversationContext public class ConversationContextManager { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); - private static Task? _cleanupTask; - private static CancellationToken _cancellationToken; private IDatabase _redisDb; public ConversationContextManager()