[TYPO] Added a space between Text and Error at Landing:135

This commit is contained in:
Fryslan
2016-10-16 20:40:42 +02:00
parent a41a5eb087
commit 8402162ad5
+1 -1
View File
@@ -131,7 +131,7 @@ public final class Landing {
case "-proxy":
ProxyType type = ProxyType.valueOf(args[++i].toUpperCase());
if (type == null) {
System.err.println("Invalid proxy type:" + args[i]);
System.err.println("Invalid proxy type: " + args[i]);
System.exit(1);
return;
}