From f2bf453a7c492f5b8a1a5cf2eadda6852b842aaf Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Sat, 22 Dec 2018 11:45:11 +0100 Subject: [PATCH] Removed deprecated methods from Island --- .../bentobox/database/objects/Island.java | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/src/main/java/world/bentobox/bentobox/database/objects/Island.java b/src/main/java/world/bentobox/bentobox/database/objects/Island.java index 941d16411..8b155dc2b 100644 --- a/src/main/java/world/bentobox/bentobox/database/objects/Island.java +++ b/src/main/java/world/bentobox/bentobox/database/objects/Island.java @@ -589,20 +589,6 @@ public class Island implements DataObject { this.world = world; } - /** - * Show info on the island - * @param plugin - plugin - * @param user - the user who is receiving the info - * @param world - world to check - * @return true always - * - * @deprecated Renamed to {@link #showInfo(User)}. - */ - @Deprecated - public boolean showInfo(BentoBox plugin, User user, World world) { - return showInfo(user); - } - /** * Shows info of this island to this user. * @param user the User who is requesting it @@ -648,19 +634,6 @@ public class Island implements DataObject { return true; } - /** - * Shows the members of this island - * @param plugin - plugin - * @param user - user who is requesting - * @param world - world to check - * - * @deprecated Renamed to {@link #showMembers(User)}. - */ - @Deprecated - public void showMembers(BentoBox plugin, User user, World world) { - showMembers(user); - } - /** * Shows the members of this island to this user. * @param user the User who is requesting it