mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 03:43:40 +01:00
SPIGOT-3361: Deprecate confusing MaterialData.toItemStack()
By: md_5 <git@md-5.net>
This commit is contained in:
parent
2f502ca65a
commit
864993ba5e
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue