single group fix
This commit is contained in:
parent
bb7f1b6737
commit
72f049b478
@ -108,8 +108,12 @@ public class AssignmentResponse {
|
|||||||
this.id = course.getId();
|
this.id = course.getId();
|
||||||
this.name = course.getName();
|
this.name = course.getName();
|
||||||
this.symbol = course.getSymbol();
|
this.symbol = course.getSymbol();
|
||||||
this.classes = new GroupWithCapacityResponse(classes, ammounts.get(classes.getGroup().getId()));
|
this.classes = classes != null
|
||||||
this.lecture = new GroupWithCapacityResponse(lecture, ammounts.get(lecture.getGroup().getId()));
|
? new GroupWithCapacityResponse(classes, ammounts.get(classes.getGroup().getId()))
|
||||||
|
: null;
|
||||||
|
this.lecture = lecture != null
|
||||||
|
? new GroupWithCapacityResponse(lecture, ammounts.get(lecture.getGroup().getId()))
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -121,8 +125,8 @@ public class AssignmentResponse {
|
|||||||
this.id = course.getId();
|
this.id = course.getId();
|
||||||
this.name = course.getName();
|
this.name = course.getName();
|
||||||
this.symbol = course.getSymbol();
|
this.symbol = course.getSymbol();
|
||||||
this.classes = new GroupWithCapacityResponse(classes);
|
this.classes = classes != null ? new GroupWithCapacityResponse(classes) : null;
|
||||||
this.lecture = new GroupWithCapacityResponse(lecture);
|
this.lecture = lecture != null ? new GroupWithCapacityResponse(lecture) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user