From ab72dce8b5a991ca0123bd1cea448782d61c2d0a Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Thu, 12 Jun 2014 00:16:38 +0100 Subject: [PATCH] refs #246 removed unused private methods --- src/blackcore/context_network_atc.cpp | 16 ---------------- src/blackcore/context_network_impl.h | 12 ------------ 2 files changed, 28 deletions(-) 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 {