Skip to content

Commit

Permalink
Remove extra blank classes
Browse files Browse the repository at this point in the history
  • Loading branch information
vyPal committed Oct 26, 2023
1 parent 3084a2a commit 0f3a9e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/timetable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ TimeTableData processTimeTable(TimeTableData tt) {

classes.sort(
(a, b) => int.parse(a.startPeriod).compareTo(int.parse(b.startPeriod)));
periods.sort((a, b) => a.startTime.compareTo(b.startTime));

List<TimeTableClass> newClasses = [];

Expand Down

0 comments on commit 0f3a9e9

Please sign in to comment.