| 23 | import org.bukkit.inventory.ItemStack; |
| 24 | |
| 25 | public class NMS_Default implements NMS.Impl { |
| 26 | |
| 27 | @Override |
| 28 | public String serializeStack(ItemStack is) { |
| 29 | return null; |
| 30 | } |
| 31 | |
| 32 | @Override |
| 33 | public ItemStack deserializeStack(String s) { |
| 34 | return null; |
| 35 | } |
| 36 | |
| 37 | @Override |
| 38 | public void sendCooldown(Player p, Material m, int tick) { |
| 39 | |
| 40 | } |
| 41 | } |
nothing calls this directly
no outgoing calls
no test coverage detected