Removed unused EventManager class member from TargetController
This commit is contained in:
@@ -353,7 +353,6 @@ namespace Bloom
|
|||||||
|
|
||||||
void Application::startTargetController() {
|
void Application::startTargetController() {
|
||||||
this->targetController = std::make_unique<TargetController>(
|
this->targetController = std::make_unique<TargetController>(
|
||||||
this->eventManager,
|
|
||||||
this->projectConfig.value(),
|
this->projectConfig.value(),
|
||||||
this->environmentConfig.value()
|
this->environmentConfig.value()
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -35,10 +35,9 @@ namespace Bloom
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit TargetController(
|
explicit TargetController(
|
||||||
EventManager& eventManager,
|
|
||||||
const ProjectConfig& projectConfig,
|
const ProjectConfig& projectConfig,
|
||||||
const EnvironmentConfig& environmentConfig
|
const EnvironmentConfig& environmentConfig
|
||||||
): eventManager(eventManager), projectConfig(projectConfig), environmentConfig(environmentConfig) {};
|
): projectConfig(projectConfig), environmentConfig(environmentConfig) {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Entry point for the TargetController.
|
* Entry point for the TargetController.
|
||||||
@@ -62,7 +61,6 @@ namespace Bloom
|
|||||||
std::unique_ptr<Targets::Target> target = nullptr;
|
std::unique_ptr<Targets::Target> target = nullptr;
|
||||||
std::unique_ptr<DebugTool> debugTool = nullptr;
|
std::unique_ptr<DebugTool> debugTool = nullptr;
|
||||||
|
|
||||||
EventManager& eventManager;
|
|
||||||
EventListenerPointer eventListener = std::make_shared<EventListener>("TargetControllerEventListener");
|
EventListenerPointer eventListener = std::make_shared<EventListener>("TargetControllerEventListener");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user