From 47d7fe3e9565f75bbbd6064748457a48bff6e868 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 15 Oct 2024 17:22:10 -0500 Subject: [PATCH] remove unused usings --- TASVideos/Extensions/ApplicationBuilderExtensions.cs | 1 - TASVideos/WikiModules/WikiLink.cshtml.cs | 3 +-- .../TASVideos.Core.Tests/Services/PublicationHistoryTests.cs | 3 +-- .../Services/PublicationMaintenanceLoggerTests.cs | 4 +--- .../TASVideos.Data.Tests/Context/ApplicationDbContextTests.cs | 3 +-- tests/TASVideos.Test/Pages/Wiki/RenderModelTests.cs | 1 - 6 files changed, 4 insertions(+), 11 deletions(-) diff --git a/TASVideos/Extensions/ApplicationBuilderExtensions.cs b/TASVideos/Extensions/ApplicationBuilderExtensions.cs index af8426adc..2dada38ce 100644 --- a/TASVideos/Extensions/ApplicationBuilderExtensions.cs +++ b/TASVideos/Extensions/ApplicationBuilderExtensions.cs @@ -1,5 +1,4 @@ using Microsoft.AspNetCore.StaticFiles; -using Microsoft.Extensions.FileProviders; using TASVideos.Core.Settings; using TASVideos.Middleware; diff --git a/TASVideos/WikiModules/WikiLink.cshtml.cs b/TASVideos/WikiModules/WikiLink.cshtml.cs index 90e4d9ba5..39d6c8503 100644 --- a/TASVideos/WikiModules/WikiLink.cshtml.cs +++ b/TASVideos/WikiModules/WikiLink.cshtml.cs @@ -1,5 +1,4 @@ -using Microsoft.Extensions.Hosting; -using TASVideos.Core.Services.Wiki; +using TASVideos.Core.Services.Wiki; using TASVideos.Core.Settings; using TASVideos.Data.Helpers; using TASVideos.WikiEngine; diff --git a/tests/TASVideos.Core.Tests/Services/PublicationHistoryTests.cs b/tests/TASVideos.Core.Tests/Services/PublicationHistoryTests.cs index 19a6b40aa..add65dd94 100644 --- a/tests/TASVideos.Core.Tests/Services/PublicationHistoryTests.cs +++ b/tests/TASVideos.Core.Tests/Services/PublicationHistoryTests.cs @@ -1,5 +1,4 @@ -using TASVideos.Core.Services.Email; -using TASVideos.Data.Entity; +using TASVideos.Data.Entity; using TASVideos.Data.Entity.Game; namespace TASVideos.Core.Tests.Services; diff --git a/tests/TASVideos.Core.Tests/Services/PublicationMaintenanceLoggerTests.cs b/tests/TASVideos.Core.Tests/Services/PublicationMaintenanceLoggerTests.cs index a5f4884e9..8d80b8e30 100644 --- a/tests/TASVideos.Core.Tests/Services/PublicationMaintenanceLoggerTests.cs +++ b/tests/TASVideos.Core.Tests/Services/PublicationMaintenanceLoggerTests.cs @@ -1,6 +1,4 @@ -using TASVideos.Data.Entity; - -namespace TASVideos.Core.Tests.Services; +namespace TASVideos.Core.Tests.Services; [TestClass] public class PublicationMaintenanceLoggerTests : TestDbBase diff --git a/tests/TASVideos.Data.Tests/Context/ApplicationDbContextTests.cs b/tests/TASVideos.Data.Tests/Context/ApplicationDbContextTests.cs index 1e1d3ebfa..d102160cb 100644 --- a/tests/TASVideos.Data.Tests/Context/ApplicationDbContextTests.cs +++ b/tests/TASVideos.Data.Tests/Context/ApplicationDbContextTests.cs @@ -1,5 +1,4 @@ -using TASVideos.Data.Entity; -using TASVideos.Tests.Base; +using TASVideos.Tests.Base; namespace TASVideos.Data.Tests.Context; diff --git a/tests/TASVideos.Test/Pages/Wiki/RenderModelTests.cs b/tests/TASVideos.Test/Pages/Wiki/RenderModelTests.cs index 55378366f..bfe7190c4 100644 --- a/tests/TASVideos.Test/Pages/Wiki/RenderModelTests.cs +++ b/tests/TASVideos.Test/Pages/Wiki/RenderModelTests.cs @@ -3,7 +3,6 @@ using Microsoft.Extensions.Logging.Abstractions; using TASVideos.Core.Services.Wiki; using TASVideos.Pages.Wiki; -using TASVideos.Tests.Base; namespace TASVideos.RazorPages.Tests.Pages.Wiki;