Skip to content

Commit

Permalink
remove unused change detector
Browse files Browse the repository at this point in the history
  • Loading branch information
coolchock committed Feb 16, 2025
1 parent f825009 commit 12e658a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChangeDetectorRef, Component, OnChanges, OnInit, inject, input, output } from '@angular/core';
import { Component, OnChanges, OnInit, inject, input, output } from '@angular/core';
import { Exercise, ExerciseType, getIcon, getIconTooltip } from 'app/entities/exercise.model';
import { ExamPageComponent } from 'app/exam/participate/exercises/exam-page.component';
import { StudentExam } from 'app/entities/student-exam.model';
Expand All @@ -21,7 +21,6 @@ import { ArtemisTranslatePipe } from 'app/shared/pipes/artemis-translate.pipe';
imports: [TranslateDirective, FaIconComponent, NgbTooltip, NgClass, UpdatingResultComponent, ArtemisTranslatePipe],
})
export class ExamExerciseOverviewPageComponent extends ExamPageComponent implements OnInit, OnChanges {
protected changeDetectorReference: ChangeDetectorRef = inject(ChangeDetectorRef);
private examParticipationService = inject(ExamParticipationService);

studentExam = input.required<StudentExam>();
Expand Down

0 comments on commit 12e658a

Please sign in to comment.