mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-26 09:34:27 +00:00
Removed string.isEmpty() method calls
This commit is contained in:
@ -298,7 +298,7 @@ public abstract class CommandsManager<T> {
|
||||
command.append(getArguments(cmd));
|
||||
|
||||
final String help = cmd.help();
|
||||
if (!help.isEmpty()) {
|
||||
if (help.length() > 0) {
|
||||
command.append("\n\n");
|
||||
command.append(help);
|
||||
}
|
||||
|
Reference in New Issue
Block a user