Removed unused EventManager class member from DebugServer and derived classes

This commit is contained in:
Nav
2022-03-20 17:55:15 +00:00
parent 3f70e84f68
commit 28396d9d80
4 changed files with 5 additions and 13 deletions

View File

@@ -42,11 +42,10 @@ namespace Bloom::DebugServers::Gdb
{
public:
explicit GdbRspDebugServer(
EventManager& eventManager,
const ProjectConfig& projectConfig,
const EnvironmentConfig& environmentConfig,
const DebugServerConfig& debugServerConfig
): DebugServer(eventManager, projectConfig, environmentConfig, debugServerConfig) {};
): DebugServer(projectConfig, environmentConfig, debugServerConfig) {};
std::string getName() const override {
return "GDB Remote Serial Protocol DebugServer";