From 4f397e1ce2586e6f842085aeda59b44b038979be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= <6766154+Zumorica@users.noreply.github.com> Date: Sun, 23 Feb 2020 00:28:50 +0100 Subject: [PATCH] Fix warnings (#723) --- Content.Client/UserInterface/EscapeMenu.cs | 2 ++ .../GameObjects/Components/Items/Storage/ItemComponent.cs | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/UserInterface/EscapeMenu.cs b/Content.Client/UserInterface/EscapeMenu.cs index 93cc05fde2..c654bb8bf0 100644 --- a/Content.Client/UserInterface/EscapeMenu.cs +++ b/Content.Client/UserInterface/EscapeMenu.cs @@ -21,8 +21,10 @@ namespace Content.Client.UserInterface private readonly IResourceCache _resourceCache; private readonly IConfigurationManager _configSystem; private readonly ILocalizationManager _localizationManager; +#pragma warning disable 649 [Dependency] private readonly ISandboxManager _sandboxManager; [Dependency] private readonly IClientConGroupController _conGroupController; +#pragma warning restore 649 private BaseButton QuitButton; private BaseButton OptionsButton; diff --git a/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs b/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs index d3bea49db2..b4c879b024 100644 --- a/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs +++ b/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs @@ -27,8 +27,6 @@ namespace Content.Server.GameObjects #pragma warning disable 649 [Dependency] private readonly IRobustRandom _robustRandom; - [Dependency] private readonly IPhysicsManager _physicsManager; - [Dependency] private readonly IMapManager _mapManager; [Dependency] private readonly IEntitySystemManager _entitySystemManager; #pragma warning restore 649