Remove deprecated sameAs for blocks

This commit is contained in:
thatsIch
2015-06-17 23:32:33 +02:00
parent 0cd25428e6
commit 03eec78d6f
3 changed files with 6 additions and 34 deletions
@@ -2,8 +2,6 @@ package appeng.api.definitions;
import net.minecraft.item.ItemStack;
import net.minecraft.util.BlockPos;
import net.minecraft.world.IBlockAccess;
/**
@@ -23,17 +21,4 @@ public interface IComparableDefinition
* @return true if the item stack is a matching item.
*/
boolean isSameAs( ItemStack comparableStack );
/**
* Compare Block with world.
*
* @param world world of block
* @param pos in world.
*
* @return if the block is placed in the world at the specific location.
*
* @deprecated moved to {@link IBlockDefinition}. Is removed in the next major release rv3
*/
@Deprecated
boolean isSameAs( IBlockAccess world, BlockPos pos );
}