From 09f3535d775a4a738ab50b874e1348bcec1e4cfa Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 15 Aug 2023 17:07:49 +0100 Subject: [PATCH] refactor: remove unused ns import --- OliverBooth/Services/ITemplateService.cs | 1 - OliverBooth/Services/TemplateService.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/OliverBooth/Services/ITemplateService.cs b/OliverBooth/Services/ITemplateService.cs index 82202fa..5fa9239 100644 --- a/OliverBooth/Services/ITemplateService.cs +++ b/OliverBooth/Services/ITemplateService.cs @@ -1,5 +1,4 @@ using System.Diagnostics.CodeAnalysis; -using OliverBooth.Data; using OliverBooth.Data.Web; using OliverBooth.Markdown.Template; diff --git a/OliverBooth/Services/TemplateService.cs b/OliverBooth/Services/TemplateService.cs index dd7cbb8..58334af 100644 --- a/OliverBooth/Services/TemplateService.cs +++ b/OliverBooth/Services/TemplateService.cs @@ -1,7 +1,6 @@ using System.Buffers.Binary; using System.Diagnostics.CodeAnalysis; using Microsoft.EntityFrameworkCore; -using OliverBooth.Data; using OliverBooth.Data.Web; using OliverBooth.Formatting; using OliverBooth.Markdown.Template;