From 563ef68c957c86ad01cf70e61e51a837192a0c8f Mon Sep 17 00:00:00 2001 From: Marcel Konrad Date: Thu, 2 Jul 2020 18:45:53 +0200 Subject: [PATCH] Remove TODO comment --- .../worldhandler/builder/component/impl/EntityNBT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java b/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java index cbde9cf..08362b2 100644 --- a/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java +++ b/src/main/java/exopandora/worldhandler/builder/component/impl/EntityNBT.java @@ -173,7 +173,7 @@ public class EntityNBT implements IBuilderComponent public void setArmorItem(int index, ResourceLocation location) { - if(EntityNBT.isArrayIndexValid(this.armorItems, index) && location != null) //TODO + if(EntityNBT.isArrayIndexValid(this.armorItems, index) && location != null) { this.armorItems[index] = location; }