diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-26 16:05:52 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-26 16:05:52 -0500 |
| commit | 51b3c32e2cc84778212531d72665d2c5f567f34a (patch) | |
| tree | 68fe93852dd6b3dffac09b3d7917dd6370b2784b /MediaBrowser.Networking/HttpServer/ServerFactory.cs | |
| parent | fbac08feada72c198cd5151e25008bca2b435cda (diff) | |
a little more consolidation
Diffstat (limited to 'MediaBrowser.Networking/HttpServer/ServerFactory.cs')
| -rw-r--r-- | MediaBrowser.Networking/HttpServer/ServerFactory.cs | 27 |
1 files changed, 0 insertions, 27 deletions
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 -{ - /// <summary> - /// Class ServerFactory - /// </summary> - public static class ServerFactory - { - /// <summary> - /// Creates the server. - /// </summary> - /// <param name="applicationHost">The application host.</param> - /// <param name="protobufSerializer">The protobuf serializer.</param> - /// <param name="logger">The logger.</param> - /// <param name="serverName">Name of the server.</param> - /// <param name="defaultRedirectpath">The default redirectpath.</param> - /// <returns>IHttpServer.</returns> - public static IHttpServer CreateServer(IApplicationHost applicationHost, IProtobufSerializer protobufSerializer, ILogger logger, string serverName, string defaultRedirectpath) - { - return new HttpServer(applicationHost, protobufSerializer, logger, serverName, defaultRedirectpath); - } - } -} |
