Don't use deprecated interface.

By: Travis Watkins <amaranth@ubuntu.com>
This commit is contained in:
Bukkit/Spigot 2013-03-17 13:05:10 -05:00
parent 08b0ee9e53
commit a6d0d62b06

View file

@ -1,8 +1,10 @@
package org.bukkit.block;
import org.bukkit.inventory.InventoryHolder;
/**
* Represents a hopper.
*/
public interface Hopper extends BlockState, ContainerBlock {
public interface Hopper extends BlockState, InventoryHolder {
}