SPIGOT-3361: Deprecate confusing MaterialData.toItemStack()

This commit is contained in:
md_5 2017-06-21 22:44:18 +10:00
parent 68cb4c6197
commit 6751b88aad

View file

@ -90,7 +90,10 @@ public class MaterialData implements Cloneable {
* Creates a new ItemStack based on 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() {
return new ItemStack(type, 0, data);
}