- Rename 'EmailShowCommand' -> 'ShowEmailCommand'

- Command detailed description should ends with '.'
This commit is contained in:
DNx5 2016-10-17 22:33:04 +07:00
parent 71e4c59c20
commit b10b67b22f
2 changed files with 4 additions and 4 deletions

View File

@ -28,8 +28,8 @@ import fr.xephi.authme.command.executable.changepassword.ChangePasswordCommand;
import fr.xephi.authme.command.executable.email.AddEmailCommand;
import fr.xephi.authme.command.executable.email.ChangeEmailCommand;
import fr.xephi.authme.command.executable.email.EmailBaseCommand;
import fr.xephi.authme.command.executable.email.EmailShowCommand;
import fr.xephi.authme.command.executable.email.RecoverEmailCommand;
import fr.xephi.authme.command.executable.email.ShowEmailCommand;
import fr.xephi.authme.command.executable.login.LoginCommand;
import fr.xephi.authme.command.executable.logout.LogoutCommand;
import fr.xephi.authme.command.executable.register.RegisterCommand;
@ -359,8 +359,8 @@ public class CommandInitializer {
.parent(EMAIL_BASE)
.labels("show", "myemail")
.description("Show Email")
.detailedDescription("Show your current email address")
.executableCommand(EmailShowCommand.class)
.detailedDescription("Show your current email address.")
.executableCommand(ShowEmailCommand.class)
.build();
// Register the add command

View File

@ -15,7 +15,7 @@ import java.util.List;
* Created on 17/10/2016.
* Author: DNx
*/
public class EmailShowCommand extends PlayerCommand {
public class ShowEmailCommand extends PlayerCommand {
@Inject
private Management management;