mirror of
https://github.com/ME1312/SubServers-2.git
synced 2025-01-24 08:31:21 +01:00
Removing unused conditional statement
This commit is contained in:
parent
e802d4f467
commit
1270fc1bec
@ -118,10 +118,8 @@ public final class SubCommand extends Command implements TabExecutor {
|
|||||||
sender.sendMessage("SubServers > That SubServer is not running");
|
sender.sendMessage("SubServers > That SubServer is not running");
|
||||||
} else {
|
} else {
|
||||||
String str = args[2];
|
String str = args[2];
|
||||||
if (args.length > 3) {
|
for (int i = 3; i < args.length; i++) {
|
||||||
for (int i = 3; i < args.length; i++) {
|
str += " " + args[i];
|
||||||
str += " " + args[i];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (args[1].equals("*")) {
|
if (args[1].equals("*")) {
|
||||||
for (Server server : servers.values()) {
|
for (Server server : servers.values()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user