Remove deprecated things

This commit is contained in:
Dylan K. Taylor
2018-02-27 11:59:16 +00:00
parent f903dbfe00
commit f0535df96d
10 changed files with 0 additions and 114 deletions

View File

@ -857,19 +857,6 @@ class Item implements ItemIds, \JsonSerializable{
return $this->equals($other, true, true) and $this->count === $other->count;
}
/**
* @deprecated Use {@link Item#equals} instead, this method will be removed in the future.
*
* @param Item $item
* @param bool $checkDamage
* @param bool $checkCompound
*
* @return bool
*/
final public function deepEquals(Item $item, bool $checkDamage = true, bool $checkCompound = true) : bool{
return $this->equals($item, $checkDamage, $checkCompound);
}
/**
* @return string
*/