From 51b3c32e2cc84778212531d72665d2c5f567f34a Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Tue, 26 Feb 2013 16:05:52 -0500 Subject: a little more consolidation --- .../HttpServer/ServerFactory.cs | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 MediaBrowser.Networking/HttpServer/ServerFactory.cs (limited to 'MediaBrowser.Networking/HttpServer/ServerFactory.cs') diff --git a/MediaBrowser.Networking/HttpServer/ServerFactory.cs b/MediaBrowser.Networking/HttpServer/ServerFactory.cs deleted file mode 100644 index 716fd450a..000000000 --- a/MediaBrowser.Networking/HttpServer/ServerFactory.cs +++ /dev/null @@ -1,27 +0,0 @@ -using MediaBrowser.Common.Kernel; -using MediaBrowser.Common.Net; -using MediaBrowser.Model.Logging; -using MediaBrowser.Model.Serialization; - -namespace MediaBrowser.Networking.HttpServer -{ - /// - /// Class ServerFactory - /// - public static class ServerFactory - { - /// - /// Creates the server. - /// - /// The application host. - /// The protobuf serializer. - /// The logger. - /// Name of the server. - /// The default redirectpath. - /// IHttpServer. - public static IHttpServer CreateServer(IApplicationHost applicationHost, IProtobufSerializer protobufSerializer, ILogger logger, string serverName, string defaultRedirectpath) - { - return new HttpServer(applicationHost, protobufSerializer, logger, serverName, defaultRedirectpath); - } - } -} -- cgit v1.2.3