SPIGOT-3361: Deprecate confusing MaterialData.toItemStack()

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2017-06-21 22:44:18 +10:00
parent 2f502ca65a
commit 864993ba5e

View file

@ -90,7 +90,10 @@ public class MaterialData implements Cloneable {
* Creates a new ItemStack based on this MaterialData * Creates a new ItemStack based on this MaterialData
* *
* @return New ItemStack containing a copy of this MaterialData * @return New ItemStack containing a copy of this MaterialData
* @deprecated this method creates an ItemStack of size 0 which is not
* generally useful. Consider {@link #toItemStack(int)}.
*/ */
@Deprecated
public ItemStack toItemStack() { public ItemStack toItemStack() {
return new ItemStack(type, 0, data); return new ItemStack(type, 0, data);
} }