From 30d319f04544eb8f01250b29373c02fdf3db5191 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Mon, 10 Jun 2024 16:40:59 -0400 Subject: [PATCH] remove unused usings --- Content.Server/Arachne/ArachneSystem.cs | 13 ------------- Content.Server/Vampire/BloodSuckerSystem.cs | 2 -- .../Injector/BloodSuckerGlandInjectorSystem.cs | 1 - Content.Shared/Arachne/ArachneComponent.cs | 3 --- Content.Shared/Arachne/WebComponent.cs | 1 - 5 files changed, 20 deletions(-) diff --git a/Content.Server/Arachne/ArachneSystem.cs b/Content.Server/Arachne/ArachneSystem.cs index 338ecc21a1a..9cdefb441be 100644 --- a/Content.Server/Arachne/ArachneSystem.cs +++ b/Content.Server/Arachne/ArachneSystem.cs @@ -1,23 +1,17 @@ using Content.Shared.Arachne; using Content.Shared.Actions; -using Content.Shared.Actions.Events; -using Content.Shared.Coordinates.Helpers; using Content.Shared.IdentityManagement; using Content.Shared.Verbs; using Content.Shared.Buckle.Components; -using Content.Shared.Maps; using Content.Shared.DoAfter; -using Content.Shared.Physics; using Content.Shared.Stunnable; using Content.Shared.Eye.Blinding.Systems; -using Content.Shared.Doors.Components; using Content.Shared.Containers.ItemSlots; using Content.Shared.Damage; using Content.Shared.Inventory; using Content.Shared.Administration.Logs; using Content.Shared.Database; using Content.Shared.Humanoid; -using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Server.Buckle.Systems; using Content.Server.Popups; @@ -25,7 +19,6 @@ using Content.Server.Body.Components; using Content.Server.Vampiric; using Content.Server.Speech.Components; -using Robust.Shared.Prototypes; using Robust.Shared.Physics.Components; using Robust.Shared.Containers; using Robust.Shared.Map; @@ -36,11 +29,7 @@ namespace Content.Server.Arachne { public sealed class ArachneSystem : EntitySystem { - [Dependency] private readonly SharedActionsSystem _actions = default!; - [Dependency] private readonly HungerSystem _hungerSystem = default!; - [Dependency] private readonly ThirstSystem _thirstSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!; [Dependency] private readonly BuckleSystem _buckleSystem = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; @@ -49,9 +38,7 @@ public sealed class ArachneSystem : EntitySystem [Dependency] private readonly IServerConsoleHost _host = default!; [Dependency] private readonly BloodSuckerSystem _bloodSuckerSystem = default!; - [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; - [Dependency] private readonly SharedContainerSystem _containerSystem = default!; private const string BodySlot = "body_slot"; diff --git a/Content.Server/Vampire/BloodSuckerSystem.cs b/Content.Server/Vampire/BloodSuckerSystem.cs index 35f4743e645..a63334a8943 100644 --- a/Content.Server/Vampire/BloodSuckerSystem.cs +++ b/Content.Server/Vampire/BloodSuckerSystem.cs @@ -15,8 +15,6 @@ using Content.Server.DoAfter; using Content.Server.Nutrition.Components; using Robust.Shared.Prototypes; -using Robust.Shared.Player; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; diff --git a/Content.Server/Vampire/Injector/BloodSuckerGlandInjectorSystem.cs b/Content.Server/Vampire/Injector/BloodSuckerGlandInjectorSystem.cs index fd9d6fc15ed..d2a92f24be6 100644 --- a/Content.Server/Vampire/Injector/BloodSuckerGlandInjectorSystem.cs +++ b/Content.Server/Vampire/Injector/BloodSuckerGlandInjectorSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Popups; using Content.Shared.Interaction; -using Robust.Shared.Player; namespace Content.Server.Vampiric { diff --git a/Content.Shared/Arachne/ArachneComponent.cs b/Content.Shared/Arachne/ArachneComponent.cs index 8e1dd03b200..04c369cc456 100644 --- a/Content.Shared/Arachne/ArachneComponent.cs +++ b/Content.Shared/Arachne/ArachneComponent.cs @@ -1,7 +1,4 @@ using Robust.Shared.GameStates; -using Robust.Shared.Serialization; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Arachne { diff --git a/Content.Shared/Arachne/WebComponent.cs b/Content.Shared/Arachne/WebComponent.cs index 95c03e5a4a2..c8284f39434 100644 --- a/Content.Shared/Arachne/WebComponent.cs +++ b/Content.Shared/Arachne/WebComponent.cs @@ -1,5 +1,4 @@ using Robust.Shared.GameStates; -using Robust.Shared.Serialization; namespace Content.Shared.Arachne {