From a9a771ba1c90d8525f1c46ba8dea048466720ffc Mon Sep 17 00:00:00 2001 From: NathanSweet Date: Fri, 24 Jun 2016 14:50:22 +0200 Subject: [PATCH] Removed old attachment types. --- .../src/com/esotericsoftware/spine/SkeletonJson.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonJson.java b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonJson.java index 9944a1cba..3c113dcb4 100644 --- a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonJson.java +++ b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/SkeletonJson.java @@ -298,11 +298,6 @@ public class SkeletonJson { String type = map.getString("type", AttachmentType.region.name()); - // BOZO - Warning: These types are deprecated and will be removed in the near future. - if (type.equals("skinnedmesh")) type = "weightedmesh"; - if (type.equals("weightedmesh")) type = "mesh"; - if (type.equals("weightedlinkedmesh")) type = "linkedmesh"; - switch (AttachmentType.valueOf(type)) { case region: { String path = map.getString("path", name);