Skip to content

Commit

Permalink
refactor(Classroom Monitor): Remove function accidentally left in
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreykwan committed Oct 25, 2023
1 parent 507e67d commit fd8376d
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/assets/wise5/services/classroomStatusService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit fd8376d

Please sign in to comment.