From e3c025977a181b2922cdb6409307f3da34e677e9 Mon Sep 17 00:00:00 2001 From: Bukkit/Spigot Date: Sun, 14 Apr 2024 17:00:24 +1000 Subject: [PATCH] Remove no longer required deprecation on display color APIs By: md_5 --- paper-api/src/main/java/org/bukkit/entity/TextDisplay.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/paper-api/src/main/java/org/bukkit/entity/TextDisplay.java b/paper-api/src/main/java/org/bukkit/entity/TextDisplay.java index d6d7ada3d3..bbce00a6d8 100644 --- a/paper-api/src/main/java/org/bukkit/entity/TextDisplay.java +++ b/paper-api/src/main/java/org/bukkit/entity/TextDisplay.java @@ -42,19 +42,15 @@ public interface TextDisplay extends Display { * Gets the text background color. * * @return the background color - * @deprecated API subject to change */ @Nullable - @Deprecated Color getBackgroundColor(); /** * Sets the text background color. * * @param color new background color - * @deprecated API subject to change */ - @Deprecated void setBackgroundColor(@Nullable Color color); /**