refactor: Remove unused method

The server file is only read once and does not use the
doWork/doWorkImpl() approach from CContinousWorker
This commit is contained in:
Lars Toenning
2025-06-09 12:05:16 +02:00
parent ea0a6e7d40
commit c0b98c34c8
2 changed files with 0 additions and 8 deletions

View File

@@ -43,8 +43,6 @@ namespace swift::core::vatsim
});
}
void CVatsimServerFileReader::doWorkImpl() { this->read(); }
void CVatsimServerFileReader::read()
{
this->threadAssertCheck();

View File

@@ -48,12 +48,6 @@ namespace swift::core::vatsim
void dataRead(swift::misc::network::CEntityFlags::Entity entity,
swift::misc::network::CEntityFlags::ReadState state, int number, const QUrl &url);
protected:
//! \name swift::core::CThreadedReader overrides
//! @{
virtual void doWorkImpl() override;
//! @}
private:
swift::misc::CData<swift::core::data::TVatsimSetup> m_lastGoodSetup { this };