Changed method return to ArrayList<String> in Application.java aswell
parent
1be9d7b429
commit
757e33fc8f
|
@ -1,5 +1,6 @@
|
|||
package de.hs_mannheim.facade;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.TreeSet;
|
||||
|
||||
import de.hs_mannheim.domain.System;
|
||||
|
@ -28,12 +29,12 @@ public class Application {
|
|||
return true;
|
||||
}
|
||||
|
||||
public TreeSet<String> search(String hometown_or_zip){
|
||||
return new TreeSet<String>();
|
||||
public ArrayList<String> search(String hometown_or_zip){
|
||||
return new ArrayList<String>();
|
||||
}
|
||||
|
||||
public TreeSet<String> random_destinations(){
|
||||
return new TreeSet<String>();
|
||||
public ArrayList<String> random_destinations(){
|
||||
return new ArrayList<String>();
|
||||
}
|
||||
|
||||
public String[] destination_details(String destination_zip){
|
||||
|
|
Loading…
Reference in New Issue