mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-07 13:03:06 +00:00
Reformat.
This commit is contained in:
parent
59be72aefe
commit
73e92b8341
167 changed files with 3705 additions and 5553 deletions
|
@ -164,12 +164,12 @@ public enum Command {
|
|||
/**
|
||||
* Command
|
||||
*/
|
||||
private final String command;
|
||||
private final String command;
|
||||
|
||||
/**
|
||||
* Alias
|
||||
*/
|
||||
private final String alias;
|
||||
private final String alias;
|
||||
|
||||
/**
|
||||
* Permission Node
|
||||
|
@ -177,8 +177,7 @@ public enum Command {
|
|||
private final CommandPermission permission;
|
||||
|
||||
/**
|
||||
* @param command
|
||||
* Command "name" (/plot [cmd])
|
||||
* @param command Command "name" (/plot [cmd])
|
||||
*/
|
||||
Command(final String command) {
|
||||
this.command = command;
|
||||
|
@ -187,10 +186,8 @@ public enum Command {
|
|||
}
|
||||
|
||||
/**
|
||||
* @param command
|
||||
* Command "name" (/plot [cmd])
|
||||
* @param permission
|
||||
* Command Permission Node
|
||||
* @param command Command "name" (/plot [cmd])
|
||||
* @param permission Command Permission Node
|
||||
*/
|
||||
Command(final String command, final CommandPermission permission) {
|
||||
this.command = command;
|
||||
|
@ -199,10 +196,8 @@ public enum Command {
|
|||
}
|
||||
|
||||
/**
|
||||
* @param command
|
||||
* Command "name" (/plot [cmd])
|
||||
* @param alias
|
||||
* Command Alias
|
||||
* @param command Command "name" (/plot [cmd])
|
||||
* @param alias Command Alias
|
||||
*/
|
||||
Command(final String command, final String alias) {
|
||||
this.command = command;
|
||||
|
@ -211,12 +206,9 @@ public enum Command {
|
|||
}
|
||||
|
||||
/**
|
||||
* @param command
|
||||
* Command "name" (/plot [cmd])
|
||||
* @param alias
|
||||
* Command Alias
|
||||
* @param permission
|
||||
* Required Permission Node
|
||||
* @param command Command "name" (/plot [cmd])
|
||||
* @param alias Command Alias
|
||||
* @param permission Required Permission Node
|
||||
*/
|
||||
Command(final String command, final String alias, final CommandPermission permission) {
|
||||
this.command = command;
|
||||
|
@ -240,6 +232,7 @@ public enum Command {
|
|||
|
||||
/**
|
||||
* @return permission object
|
||||
*
|
||||
* @see com.intellectualcrafters.plot.commands.CommandPermission
|
||||
*/
|
||||
public CommandPermission getPermission() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue