Fixed formatting error in BukkitEntity.

This commit is contained in:
sk89q 2014-06-28 22:43:41 -07:00
parent b0d050451a
commit c9612c05a7

View File

@ -55,7 +55,7 @@ class BukkitEntity implements Entity {
@SuppressWarnings("unchecked")
<T> T getMetaData(Class<T> metaDataClass) {
if (metaDataClass == Tameable.class && getEntity() instanceof org.bukkit.entity.Tameable) {
if (metaDataClass == Tameable.class && getEntity() instanceof org.bukkit.entity.Tameable) {
return (T) new TameableAdapter((org.bukkit.entity.Tameable) getEntity());
} else {
return null;