first public release - hiding disabled stations

pull/1/head
Mateusz Lubecki 2021-02-07 15:08:05 +01:00
rodzic c0cb3e5be8
commit 4c903d2231
1 zmienionych plików z 16 dodań i 14 usunięć

Wyświetl plik

@ -53,6 +53,7 @@ public class AllStationsDao {
out = new LinkedList<WeatherStation>();
for (StationDefinition def : intermediate.stations) {
if (def.enabled) {
WeatherStation elem = new WeatherStation();
elem.setSystemName(def.name);
@ -72,6 +73,7 @@ public class AllStationsDao {
out.add(elem);
}
}
}
}