From 4169ae9f16e3a132fd747854728ff9a3ee4527da Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Thu, 13 Dec 2018 09:47:19 +0100 Subject: [PATCH] Removed unused World parameter in Island#showMembers() --- .../world/bentobox/bentobox/database/objects/Island.java | 5 ++--- 1 file changed, 2 insertions(+), 3 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 f07a0befd..2e618b775 100644 --- a/src/main/java/world/bentobox/bentobox/database/objects/Island.java +++ b/src/main/java/world/bentobox/bentobox/database/objects/Island.java @@ -613,7 +613,7 @@ public class Island implements DataObject { String total = plugin.getIWM().getResetLimit(world) < 0 ? "Unlimited" : String.valueOf(plugin.getIWM().getResetLimit(world)); user.sendMessage("commands.admin.info.resets-left", "[number]", resets, "[total]", total); // Show team members - showMembers(plugin, user, world); + showMembers(plugin, user); } Vector location = center.toVector(); user.sendMessage("commands.admin.info.island-location", "[xyz]", Util.xyz(location)); @@ -639,9 +639,8 @@ public class Island implements DataObject { * Shows the members of this island * @param plugin - plugin * @param user - user who is requesting - * @param world - world to check */ - public void showMembers(BentoBox plugin, User user, World world) { + public void showMembers(BentoBox plugin, User user) { user.sendMessage("commands.admin.info.team-members-title"); members.forEach((u, i) -> { if (owner.equals(u)) {