refactor: Remove unused function

This commit is contained in:
Lars Toenning
2025-01-01 16:08:10 +01:00
parent ae1de21900
commit 4ab00a36b9
2 changed files with 0 additions and 13 deletions

View File

@@ -598,16 +598,6 @@ namespace swift::core::context
return true;
}
void CContextSimulator::listenForAllSimulators()
{
const auto plugins = getAvailableSimulatorPlugins();
for (const CSimulatorPluginInfo &p : plugins)
{
Q_ASSERT(!p.isUnspecified());
if (p.isValid()) { this->listenForSimulator(p); }
}
}
void CContextSimulator::unloadSimulatorPlugin()
{
if (!m_simulatorPlugin.first.isUnspecified())

View File

@@ -363,9 +363,6 @@ namespace swift::core
//! Listen for single simulator
bool listenForSimulator(const swift::misc::simulation::CSimulatorPluginInfo &simulatorInfo);
//! Listen for all simulators
void listenForAllSimulators();
//! Call stop() on all loaded listeners
void stopSimulatorListeners();