Don't use deprecated interface.

This commit is contained in:
Travis Watkins
2013-03-17 13:05:10 -05:00
parent de55f86844
commit 51da39dd27

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 {
}