Use proper naming convention for boolean methods.

By: Travis Watkins <amaranth@ubuntu.com>
This commit is contained in:
CraftBukkit/Spigot
2013-03-15 14:25:37 -05:00
parent 18164ee949
commit bb2baf6ba7

View File

@@ -379,7 +379,7 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
getHandle().setCustomNameVisible(flag); getHandle().setCustomNameVisible(flag);
} }
public boolean getCustomNameVisible() { public boolean isCustomNameVisible() {
return getHandle().getCustomNameVisible(); return getHandle().getCustomNameVisible();
} }
} }