From 4e2378291144db9882d183c4a032a6fa06922b3e Mon Sep 17 00:00:00 2001 From: SpaceToad Date: Sat, 11 Jan 2014 10:56:01 +0100 Subject: [PATCH] added nissing deprecated annotation --- common/buildcraft/core/utils/Utils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/common/buildcraft/core/utils/Utils.java b/common/buildcraft/core/utils/Utils.java index f87664de..b8387a19 100644 --- a/common/buildcraft/core/utils/Utils.java +++ b/common/buildcraft/core/utils/Utils.java @@ -97,6 +97,7 @@ public class Utils { * FIXME This is only kept here for the purpose of get3dOrientation, which * should probably be removed following the same principles */ + @Deprecated private static ForgeDirection get2dOrientation(Position pos1, Position pos2) { double Dx = pos1.x - pos2.x; double Dz = pos1.z - pos2.z;