From bf7d3614d4d3d700b8f5af3a648d12864a588572 Mon Sep 17 00:00:00 2001 From: Felix Kleis Date: Wed, 8 Nov 2023 13:21:01 +0100 Subject: [PATCH] removed unused code --- .../Presentation/PresentationDIContainer.ts | 5 ----- .../LearningSpaceScorePanelController.ts | 2 -- 2 files changed, 7 deletions(-) diff --git a/src/Components/Core/DependencyInjection/Presentation/PresentationDIContainer.ts b/src/Components/Core/DependencyInjection/Presentation/PresentationDIContainer.ts index 492952b77..c904b6963 100644 --- a/src/Components/Core/DependencyInjection/Presentation/PresentationDIContainer.ts +++ b/src/Components/Core/DependencyInjection/Presentation/PresentationDIContainer.ts @@ -2,16 +2,11 @@ import { ContainerModule } from "inversify"; import IMovementIndicator from "../../Presentation/Babylon/MovementIndicator/IMovementIndicator"; import PRESENTATION_TYPES from "./PRESENTATION_TYPES"; import MovementIndicator from "../../Presentation/Babylon/MovementIndicator/MovementIndicator"; -import ILearningSpaceGoalPanelPresenter from "~ReactComponents/LearningSpaceDisplay/LearningSpaceGoalPanel/ILearningSpaceGoalPanelPresenter"; -import LearningSpaceGoalPanelPresenter from "~ReactComponents/LearningSpaceDisplay/LearningSpaceGoalPanel/LearningSpaceGoalPanelPresenter"; const PresentationDIContainer = new ContainerModule((bind) => { bind(PRESENTATION_TYPES.IMovementIndicator).to( MovementIndicator ); - // bind( - // PRESENTATION_TYPES.ILearningSpaceGoalPanelPresenter - // ).to(LearningSpaceGoalPanelPresenter); }); export default PresentationDIContainer; diff --git a/src/Components/Core/Presentation/React/LearningSpaceDisplay/LearningSpaceScorePanel/LearningSpaceScorePanelController.ts b/src/Components/Core/Presentation/React/LearningSpaceDisplay/LearningSpaceScorePanel/LearningSpaceScorePanelController.ts index 595ee8a9a..3eed01e8a 100644 --- a/src/Components/Core/Presentation/React/LearningSpaceDisplay/LearningSpaceScorePanel/LearningSpaceScorePanelController.ts +++ b/src/Components/Core/Presentation/React/LearningSpaceDisplay/LearningSpaceScorePanel/LearningSpaceScorePanelController.ts @@ -8,8 +8,6 @@ export default class LearningSpaceScorePanelController implements ILearningSpaceScorePanelController { private learningSpaceGoalPanelPresenter: ILearningSpaceGoalPanelPresenter; - - constructor() {} @bind panelClicked(): void { //pseudo lazy loading, due to timing issues ~fk