Add tutor tab #91

Merged
s416204 merged 1 commits from fix-tutor-tab-develop into develop 2018-12-17 10:44:03 +01:00

View File

@ -108,12 +108,11 @@ public class DutyHourViewModel {
return Objects.hash(day, start, end);
}
public String getSummary() {
return this.getDay() + " " + this.getStart() + " " + this.getEnd();
return this.getDay() + ": " + this.getStart() + " - " + this.getEnd();
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();