Renamed AboutCommand to BentoBoxAboutCommand

This commit is contained in:
Florian CUNY 2018-08-11 14:05:33 +02:00
parent 699b439096
commit 3d441928d0

View File

@ -10,19 +10,19 @@ import world.bentobox.bentobox.api.user.User;
* Displays generic information about BentoBox such as version and license.
* @author tastybento
*/
public class AboutCommand extends CompositeCommand {
public class BentoBoxAboutCommand extends CompositeCommand {
/**
* About
* @param parent parent CompositeCommand
*/
public AboutCommand(CompositeCommand parent) {
public BentoBoxAboutCommand(CompositeCommand parent) {
super(parent, "about");
}
@Override
public void setup() {
setDescription("commands.bentobox.about.description");
}
@Override