Removes unused "ModuleManager" (#11918)
This commit is contained in:
committed by
GitHub
parent
6eb1d33e34
commit
ebff854c55
@@ -10,7 +10,6 @@ using Content.Server.EUI;
|
||||
using Content.Server.GhostKick;
|
||||
using Content.Server.Info;
|
||||
using Content.Server.Maps;
|
||||
using Content.Server.Module;
|
||||
using Content.Server.MoMMI;
|
||||
using Content.Server.NodeContainer.NodeGroups;
|
||||
using Content.Server.Objectives;
|
||||
@@ -33,7 +32,6 @@ namespace Content.Server.IoC
|
||||
IoCManager.Register<IChatManager, ChatManager>();
|
||||
IoCManager.Register<IChatSanitizationManager, ChatSanitizationManager>();
|
||||
IoCManager.Register<IMoMMILink, MoMMILink>();
|
||||
IoCManager.Register<IModuleManager, ServerModuleManager>();
|
||||
IoCManager.Register<IServerPreferencesManager, ServerPreferencesManager>();
|
||||
IoCManager.Register<IServerDbManager, ServerDbManager>();
|
||||
IoCManager.Register<RecipeManager, RecipeManager>();
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
using Content.Shared.Module;
|
||||
|
||||
namespace Content.Server.Module
|
||||
{
|
||||
/// <summary>
|
||||
/// Server implementation of IModuleManager.
|
||||
/// Provides simple way for shared code to check if it's being run by
|
||||
/// the client of the server.
|
||||
/// </summary>
|
||||
public sealed class ServerModuleManager : IModuleManager
|
||||
{
|
||||
bool IModuleManager.IsClientModule => false;
|
||||
bool IModuleManager.IsServerModule => true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user