multiple servers impl (does not work yet)

pull/30/head
js 5 years ago committed by Louis
parent c981309ef6
commit 11e965acc8

@ -17,7 +17,7 @@ public class HostList{
/**
* Let the user enter all server and puts it in a list
* @return list of servers
* @return list of servers
*/
public List<String> getServList(){
@ -25,7 +25,7 @@ public class HostList{
Scanner scanner = new Scanner(System.in);
String servName = "";
do {
System.out.println("Name of the next server:");
System.out.println("Name of the next server: (or \"stop\" when finished)");
servName = scanner.nextLine();
if (servName != "stop"){
serverList.add(servName);

Loading…
Cancel
Save