mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-03 22:21:37 +01:00
The @Override annotation should only be used when overriding a method.
Not when implementing an interface. By: Andrew Ardill <andrew.ardill@gmail.com>
This commit is contained in:
parent
81df3f5812
commit
5382906706
@ -48,12 +48,10 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
|||||||
return "CraftHumanEntity{" + "id=" + getEntityId() + "name=" + getName() + '}';
|
return "CraftHumanEntity{" + "id=" + getEntityId() + "name=" + getName() + '}';
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isSleeping() {
|
public boolean isSleeping() {
|
||||||
return getHandle().sleeping;
|
return getHandle().sleeping;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getSleepTicks() {
|
public int getSleepTicks() {
|
||||||
return getHandle().sleepTicks;
|
return getHandle().sleepTicks;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user