diff --git a/src/assets/wise5/services/classroomStatusService.ts b/src/assets/wise5/services/classroomStatusService.ts index ba021e21a7b..8d7a6eba37c 100644 --- a/src/assets/wise5/services/classroomStatusService.ts +++ b/src/assets/wise5/services/classroomStatusService.ts @@ -65,19 +65,6 @@ export class ClassroomStatusService { return null; } - getStudentStatusForWorkgroupId0(workgroupId: number): any { - const studentStatuses = this.getStudentStatuses(); - for (let tempStudentStatus of studentStatuses) { - if (tempStudentStatus != null) { - const tempWorkgroupId = tempStudentStatus.workgroupId; - if (workgroupId === tempWorkgroupId) { - return tempStudentStatus; - } - } - } - return null; - } - getStudentStatusForWorkgroupId(workgroupId: number): any { return ( this.getStudentStatuses().find(