From ad7f945d6f724d51ee843b334838fda84c6197f2 Mon Sep 17 00:00:00 2001 From: Danielshe Date: Sun, 3 Nov 2019 19:02:00 +0800 Subject: API Changes --- src/main/java/me/shedaniel/rei/api/EntryStack.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/EntryStack.java') diff --git a/src/main/java/me/shedaniel/rei/api/EntryStack.java b/src/main/java/me/shedaniel/rei/api/EntryStack.java index 3baa4e5e0..01fc901b4 100644 --- a/src/main/java/me/shedaniel/rei/api/EntryStack.java +++ b/src/main/java/me/shedaniel/rei/api/EntryStack.java @@ -6,7 +6,6 @@ package me.shedaniel.rei.api; import me.shedaniel.math.api.Rectangle; -import me.shedaniel.rei.api.annotations.ToBeRemoved; import me.shedaniel.rei.gui.widget.QueuedTooltip; import me.shedaniel.rei.impl.EmptyEntryStack; import me.shedaniel.rei.impl.FluidEntryStack; @@ -61,10 +60,6 @@ public interface EntryStack { boolean isEmpty(); - @ToBeRemoved - @Deprecated - Entry toEntry(); - EntryStack copy(); Object getObject(); @@ -119,7 +114,7 @@ public interface EntryStack { void render(Rectangle bounds, int mouseX, int mouseY, float delta); public static enum Type { - ITEM, FLUID, EMPTY + ITEM, FLUID, EMPTY, RENDER } public static class Settings { -- cgit