Remove unused code and redundant imports.

This commit is contained in:
Thorsten Sommer 2025-04-17 11:56:12 +02:00
parent cb0ed0fcd8
commit a6719639b8
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
3 changed files with 0 additions and 4 deletions

View File

@ -2,8 +2,6 @@
// ReSharper disable UnusedType.Global
// ReSharper disable UnusedMember.Global
using Build.Tools;
using SharedTools;
namespace Build.Commands;

View File

@ -29,7 +29,6 @@ public partial class Writer : MSGComponentBase, IAsyncDisposable
protected override async Task OnInitializedAsync()
{
this.ApplyFilters([], []);
this.SettingsManager.InjectSpellchecking(USER_INPUT_ATTRIBUTES);
this.typeTimer.Elapsed += async (_, _) => await this.InvokeAsync(this.GetSuggestions);
this.typeTimer.AutoReset = false;

View File

@ -1,6 +1,5 @@
using System.Diagnostics.CodeAnalysis;
using System.Text.Json;
using System.Text.Json.Serialization;
using AIStudio.Provider;
using AIStudio.Settings.DataModel;