Removing unused conditional statement

This commit is contained in:
Kyle Melton 2017-04-23 14:10:22 -06:00
parent e802d4f467
commit 1270fc1bec
1 changed files with 2 additions and 4 deletions

View File

@ -118,10 +118,8 @@ public final class SubCommand extends Command implements TabExecutor {
sender.sendMessage("SubServers > That SubServer is not running");
} else {
String str = args[2];
if (args.length > 3) {
for (int i = 3; i < args.length; i++) {
str += " " + args[i];
}
for (int i = 3; i < args.length; i++) {
str += " " + args[i];
}
if (args[1].equals("*")) {
for (Server server : servers.values()) {