Removed deprecated methods from Island

This commit is contained in:
Florian CUNY 2018-12-22 11:45:11 +01:00
parent 407e6bb510
commit f2bf453a7c

View File

@ -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