diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-07 18:09:48 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-07 18:09:48 -0400 |
| commit | f5620c81beedc73cfec486adfd74b640961b3ccc (patch) | |
| tree | e32e765e168b241e2fbeb44f60759d0c188e62ac /MediaBrowser.Server.Implementations/HttpServer/ServerFactory.cs | |
| parent | 8308528e6ccb834e5fabe1ea1de7e2aa43265783 (diff) | |
removed unneeded startup processes
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/ServerFactory.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/ServerFactory.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/ServerFactory.cs b/MediaBrowser.Server.Implementations/HttpServer/ServerFactory.cs index 75e077c38..ce9c376a5 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/ServerFactory.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/ServerFactory.cs @@ -1,7 +1,6 @@ using MediaBrowser.Common; using MediaBrowser.Common.Net; using MediaBrowser.Model.Logging; -using MediaBrowser.Model.Serialization; namespace MediaBrowser.Server.Implementations.HttpServer { @@ -14,14 +13,13 @@ namespace MediaBrowser.Server.Implementations.HttpServer /// 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) + public static IHttpServer CreateServer(IApplicationHost applicationHost, ILogger logger, string serverName, string defaultRedirectpath) { - return new HttpServer(applicationHost, protobufSerializer, logger, serverName, defaultRedirectpath); + return new HttpServer(applicationHost, logger, serverName, defaultRedirectpath); } } } |
