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); } ///