Compare commits
	
		
			3 Commits
		
	
	
		
			capacity-f
			...
			master
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| cf4d8c05a2 | |||
|  | 72f049b478 | ||
| bb7f1b6737 | 
| @@ -108,8 +108,12 @@ public class AssignmentResponse { | ||||
|         this.id = course.getId(); | ||||
|         this.name = course.getName(); | ||||
|         this.symbol = course.getSymbol(); | ||||
|         this.classes = new GroupWithCapacityResponse(classes, ammounts.get(classes.getGroup().getId())); | ||||
|         this.lecture = new GroupWithCapacityResponse(lecture, ammounts.get(lecture.getGroup().getId())); | ||||
|         this.classes = classes != null | ||||
|                 ? 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.name = course.getName(); | ||||
|         this.symbol = course.getSymbol(); | ||||
|         this.classes = new GroupWithCapacityResponse(classes); | ||||
|         this.lecture = new GroupWithCapacityResponse(lecture); | ||||
|         this.classes = classes != null ? new GroupWithCapacityResponse(classes) : null; | ||||
|         this.lecture = lecture != null ? new GroupWithCapacityResponse(lecture) : null; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|   | ||||
		Reference in New Issue
	
	Block a user