From 5d369ffd4ac15ca2e365afa682b8ae35ebc6f6d7 Mon Sep 17 00:00:00 2001 From: Steven Giesel Date: Mon, 30 Dec 2024 11:47:25 +0100 Subject: [PATCH] refactor: Remove unsused objects --- .../Features/Components/MarkdownTextArea.razor | 1 - .../Features/Components/SelectionRange.cs | 8 -------- 2 files changed, 9 deletions(-) delete mode 100644 src/LinkDotNet.Blog.Web/Features/Components/SelectionRange.cs diff --git a/src/LinkDotNet.Blog.Web/Features/Components/MarkdownTextArea.razor b/src/LinkDotNet.Blog.Web/Features/Components/MarkdownTextArea.razor index 3aad691d..016f4eb9 100644 --- a/src/LinkDotNet.Blog.Web/Features/Components/MarkdownTextArea.razor +++ b/src/LinkDotNet.Blog.Web/Features/Components/MarkdownTextArea.razor @@ -87,5 +87,4 @@ ToastService.ShowError($"Error while uploading file: {e.Message}"); } } - } diff --git a/src/LinkDotNet.Blog.Web/Features/Components/SelectionRange.cs b/src/LinkDotNet.Blog.Web/Features/Components/SelectionRange.cs deleted file mode 100644 index 70ccc2dc..00000000 --- a/src/LinkDotNet.Blog.Web/Features/Components/SelectionRange.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace LinkDotNet.Blog.Web.Features.Components; - -public readonly record struct SelectionRange -{ - public int Start { get; init; } - - public int End { get; init; } -}