Don't use deprecated interface.

This commit is contained in:
Travis Watkins 2013-03-17 13:05:10 -05:00
parent c928810354
commit 85af526751

View File

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