Remove _INVALID_ methods

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2017-05-14 12:00:00 +10:00
parent 9cf4fbdb11
commit b2156bae0d
9 changed files with 0 additions and 229 deletions

View File

@@ -168,16 +168,6 @@ public interface LivingEntity extends Attributable, Entity, Damageable, Projecti
*/
public double getLastDamage();
/**
* This method exists for legacy reasons to provide backwards
* compatibility. It will not exist at runtime and should not be used
* under any circumstances.
*
* @return damage taken since the last no damage ticks time period
*/
@Deprecated
public int _INVALID_getLastDamage();
/**
* Sets the damage dealt within the current no damage ticks time period.
*
@@ -185,16 +175,6 @@ public interface LivingEntity extends Attributable, Entity, Damageable, Projecti
*/
public void setLastDamage(double damage);
/**
* This method exists for legacy reasons to provide backwards
* compatibility. It will not exist at runtime and should not be used
* under any circumstances.
*
* @param damage amount of damage
*/
@Deprecated
public void _INVALID_setLastDamage(int damage);
/**
* Returns the living entity's current no damage ticks.
*