From df683b3b41b8e21b9d35401cf8b11358e6a4e8cf Mon Sep 17 00:00:00 2001 From: tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Thu, 2 Apr 2026 14:36:17 +0300 Subject: [PATCH] Remove unneeded usings --- DiscordChatExporter.Core/Exporting/PlainTextMessageWriter.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/DiscordChatExporter.Core/Exporting/PlainTextMessageWriter.cs b/DiscordChatExporter.Core/Exporting/PlainTextMessageWriter.cs index 7bd6e438..dee21e15 100644 --- a/DiscordChatExporter.Core/Exporting/PlainTextMessageWriter.cs +++ b/DiscordChatExporter.Core/Exporting/PlainTextMessageWriter.cs @@ -1,12 +1,10 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using DiscordChatExporter.Core.Discord.Data; using DiscordChatExporter.Core.Discord.Data.Embeds; -using DiscordChatExporter.Core.Utils.Extensions; namespace DiscordChatExporter.Core.Exporting;