diff --git a/src/blackcore/context_network_atc.cpp b/src/blackcore/context_network_atc.cpp index 8dbd6a59b..2f23adeaa 100644 --- a/src/blackcore/context_network_atc.cpp +++ b/src/blackcore/context_network_atc.cpp @@ -90,22 +90,6 @@ namespace BlackCore } } - /* - * Booked stations - */ - void CContextNetwork::setAtcStationsBooked(const BlackMisc::Aviation::CAtcStationList &newStations) - { - this->m_atcStationsBooked = newStations; - } - - /* - * Online stations - */ - void CContextNetwork::setAtcStationsOnline(const BlackMisc::Aviation::CAtcStationList &newStations) - { - this->m_atcStationsOnline = newStations; - } - /* * Request METAR */ diff --git a/src/blackcore/context_network_impl.h b/src/blackcore/context_network_impl.h index 729d9960b..bc21c7042 100644 --- a/src/blackcore/context_network_impl.h +++ b/src/blackcore/context_network_impl.h @@ -138,18 +138,6 @@ namespace BlackCore CVatsimDataFileReader *m_vatsimDataFileReader; QTimer *m_dataUpdateTimer; //!< general updates such as ATIS, frequencies, see requestDataUpdates() - //! Replace value by new values - void setAtcStationsBooked(const BlackMisc::Aviation::CAtcStationList &newStations); - - //! Replace value by new values - void setAtcStationsOnline(const BlackMisc::Aviation::CAtcStationList &newStations); - - //! The "central" ATC list with online ATC controllers - BlackMisc::Aviation::CAtcStationList &atcStationsOnline() { return m_atcStationsOnline; } - - //! ATC list, with booked controllers - BlackMisc::Aviation::CAtcStationList &atcStationsBooked() { return m_atcStationsBooked; } - //! Get network settings BlackMisc::Settings::CSettingsNetwork getNetworkSettings() const {