From 3d441928d0f5eb8783cd4111c8695c6d0bd8cce5 Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Sat, 11 Aug 2018 14:05:33 +0200 Subject: [PATCH] Renamed AboutCommand to BentoBoxAboutCommand --- .../{AboutCommand.java => BentoBoxAboutCommand.java} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename src/main/java/world/bentobox/bentobox/commands/{AboutCommand.java => BentoBoxAboutCommand.java} (85%) diff --git a/src/main/java/world/bentobox/bentobox/commands/AboutCommand.java b/src/main/java/world/bentobox/bentobox/commands/BentoBoxAboutCommand.java similarity index 85% rename from src/main/java/world/bentobox/bentobox/commands/AboutCommand.java rename to src/main/java/world/bentobox/bentobox/commands/BentoBoxAboutCommand.java index fa9749c58..a597f04ca 100644 --- a/src/main/java/world/bentobox/bentobox/commands/AboutCommand.java +++ b/src/main/java/world/bentobox/bentobox/commands/BentoBoxAboutCommand.java @@ -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