Skip to content

Commit

Permalink
removed unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Lizardguard committed Nov 8, 2023
1 parent 3df972c commit bf7d361
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<IMovementIndicator>(PRESENTATION_TYPES.IMovementIndicator).to(
MovementIndicator
);
// bind<ILearningSpaceGoalPanelPresenter>(
// PRESENTATION_TYPES.ILearningSpaceGoalPanelPresenter
// ).to(LearningSpaceGoalPanelPresenter);
});

export default PresentationDIContainer;
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bf7d361

Please sign in to comment.