3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

Use proper naming convention for boolean methods.

Dieser Commit ist enthalten in:
Travis Watkins 2013-03-15 14:25:37 -05:00
Ursprung 83d29e461c
Commit b2c72b968e

Datei anzeigen

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