Removed string.isEmpty() method calls

This commit is contained in:
zml2008
2011-12-26 16:41:21 -08:00
parent 370ca96a44
commit 70205bfd11
5 changed files with 6 additions and 6 deletions

View File

@ -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);
}