mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
BREAKING: ItemStack no longer implements Serializable
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
579869d184
commit
8535006335
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
|||
package org.bukkit.inventory;
|
||||
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
@ -13,7 +12,7 @@ import org.bukkit.material.MaterialData;
|
|||
/**
|
||||
* Represents a stack of items
|
||||
*/
|
||||
public class ItemStack implements Serializable, ConfigurationSerializable {
|
||||
public class ItemStack implements ConfigurationSerializable {
|
||||
private int type;
|
||||
private int amount = 0;
|
||||
private MaterialData data = null;
|
||||
|
|
Loading…
Reference in a new issue