Stations list fixed on add screen
This commit is contained in:
parent
a0cb629803
commit
a249563b27
@ -168,6 +168,16 @@ public enum Station {
|
|||||||
return returnList;
|
return returnList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static public List<Station> getStationList() {
|
||||||
|
List<Station> list = new ArrayList<Station>();
|
||||||
|
for (Station station : values()) {
|
||||||
|
if (!station.equals(Station.SPCL)) {
|
||||||
|
list.add(station);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user