From 20b35ec95f950352736014d0af0865004dc2f25f Mon Sep 17 00:00:00 2001 From: jvyden Date: Wed, 20 Oct 2021 21:39:11 -0400 Subject: [PATCH] Cleanup usages --- ProjectLighthouse.Tests/DatabaseFact.cs | 1 - ProjectLighthouse/Controllers/ClientConfigurationController.cs | 1 - ProjectLighthouse/Controllers/LevelTagsController.cs | 1 - ProjectLighthouse/Controllers/NewsController.cs | 1 - ProjectLighthouse/Controllers/SearchController.cs | 1 - ProjectLighthouse/Controllers/SlotsController.cs | 1 - ProjectLighthouse/Program.cs | 1 - 7 files changed, 7 deletions(-) diff --git a/ProjectLighthouse.Tests/DatabaseFact.cs b/ProjectLighthouse.Tests/DatabaseFact.cs index f3538719..c453ffd4 100644 --- a/ProjectLighthouse.Tests/DatabaseFact.cs +++ b/ProjectLighthouse.Tests/DatabaseFact.cs @@ -1,5 +1,4 @@ using Microsoft.EntityFrameworkCore; -using ProjectLighthouse.Types; using ProjectLighthouse.Types.Settings; using Xunit; diff --git a/ProjectLighthouse/Controllers/ClientConfigurationController.cs b/ProjectLighthouse/Controllers/ClientConfigurationController.cs index 694a1105..05a6492c 100644 --- a/ProjectLighthouse/Controllers/ClientConfigurationController.cs +++ b/ProjectLighthouse/Controllers/ClientConfigurationController.cs @@ -1,6 +1,5 @@ using System.Diagnostics.CodeAnalysis; using Microsoft.AspNetCore.Mvc; -using ProjectLighthouse.Types; using ProjectLighthouse.Types.Settings; namespace ProjectLighthouse.Controllers { diff --git a/ProjectLighthouse/Controllers/LevelTagsController.cs b/ProjectLighthouse/Controllers/LevelTagsController.cs index 6c04ffbe..8358fd23 100644 --- a/ProjectLighthouse/Controllers/LevelTagsController.cs +++ b/ProjectLighthouse/Controllers/LevelTagsController.cs @@ -1,6 +1,5 @@ using System; using Microsoft.AspNetCore.Mvc; -using ProjectLighthouse.Types; using ProjectLighthouse.Types.Levels; namespace ProjectLighthouse.Controllers { diff --git a/ProjectLighthouse/Controllers/NewsController.cs b/ProjectLighthouse/Controllers/NewsController.cs index 3214d2d3..848b67e9 100644 --- a/ProjectLighthouse/Controllers/NewsController.cs +++ b/ProjectLighthouse/Controllers/NewsController.cs @@ -1,6 +1,5 @@ using Microsoft.AspNetCore.Mvc; using ProjectLighthouse.Serialization; -using ProjectLighthouse.Types; using ProjectLighthouse.Types.News; namespace ProjectLighthouse.Controllers { diff --git a/ProjectLighthouse/Controllers/SearchController.cs b/ProjectLighthouse/Controllers/SearchController.cs index 8f6e3dba..d93d92d3 100644 --- a/ProjectLighthouse/Controllers/SearchController.cs +++ b/ProjectLighthouse/Controllers/SearchController.cs @@ -4,7 +4,6 @@ using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using ProjectLighthouse.Serialization; -using ProjectLighthouse.Types; using ProjectLighthouse.Types.Levels; namespace ProjectLighthouse.Controllers { diff --git a/ProjectLighthouse/Controllers/SlotsController.cs b/ProjectLighthouse/Controllers/SlotsController.cs index 0992f36d..a0e4ab46 100644 --- a/ProjectLighthouse/Controllers/SlotsController.cs +++ b/ProjectLighthouse/Controllers/SlotsController.cs @@ -3,7 +3,6 @@ using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using ProjectLighthouse.Serialization; -using ProjectLighthouse.Types; using ProjectLighthouse.Types.Levels; namespace ProjectLighthouse.Controllers { diff --git a/ProjectLighthouse/Program.cs b/ProjectLighthouse/Program.cs index c57dc8aa..5851a3f8 100644 --- a/ProjectLighthouse/Program.cs +++ b/ProjectLighthouse/Program.cs @@ -3,7 +3,6 @@ using System.Diagnostics; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Hosting; -using ProjectLighthouse.Types; using ProjectLighthouse.Types.Settings; namespace ProjectLighthouse {