From d69eae740b49a20c25b70f8e15ebd282e3f4a1b6 Mon Sep 17 00:00:00 2001 From: Gabriel Scatolin Date: Tue, 14 May 2024 18:15:01 -0300 Subject: [PATCH] code cleanup --- src/Http/HttpServer.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Http/HttpServer.cs b/src/Http/HttpServer.cs index 6dbe739..b4dc317 100644 --- a/src/Http/HttpServer.cs +++ b/src/Http/HttpServer.cs @@ -11,7 +11,6 @@ using Sisk.Core.Http.Hosting; using Sisk.Core.Http.Streams; using Sisk.Core.Routing; -using System.Diagnostics.CodeAnalysis; using System.Net; namespace Sisk.Core.Http @@ -161,7 +160,7 @@ public HttpServer(HttpServerConfiguration configuration) { _listenerCallback = new AsyncCallback(ListenerCallback); ServerConfiguration = configuration; - handler = new HttpServerHandlerRepository(this); + handler = new HttpServerHandlerRepository(this); } ///