From a897be3c998399df6183a3dd4adf50cb6c2f71a7 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 8 Jun 2020 20:05:46 +0200 Subject: [PATCH] Remove stray usings in TransformableContainerComponent.cs For some reason there was a using for ICSharpCode.SharpZipLib.Zip.Compression and this is problematic because removing the library in the engine will mean this file will stop compiling, so let's avoid that. --- .../Components/Chemistry/TransformableContainerComponent.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Content.Server/GameObjects/Components/Chemistry/TransformableContainerComponent.cs b/Content.Server/GameObjects/Components/Chemistry/TransformableContainerComponent.cs index dec60171f8..94d18c734e 100644 --- a/Content.Server/GameObjects/Components/Chemistry/TransformableContainerComponent.cs +++ b/Content.Server/GameObjects/Components/Chemistry/TransformableContainerComponent.cs @@ -1,10 +1,7 @@ using Content.Server.GameObjects.EntitySystems; using Content.Shared.Chemistry; -using ICSharpCode.SharpZipLib.Zip.Compression; using Robust.Server.GameObjects; using Robust.Shared.GameObjects; -using Robust.Shared.Interfaces.GameObjects; -using Robust.Shared.Interfaces.GameObjects.Components; using Robust.Shared.IoC; using Robust.Shared.Prototypes; using Robust.Shared.Utility;