test fix
This commit is contained in:
parent
265315b874
commit
847dd76fc8
@ -48,7 +48,8 @@ public class User {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void removeGroup(Long id) {
|
public void removeGroup(Long id) {
|
||||||
final Groups groupToDelete = this.studentRegisteredGrups.stream().filter(e -> e.getId().equals(id)).findFirst().get();
|
final Groups groupToDelete = this.studentRegisteredGrups.stream().filter(e -> e.getId().equals(id)).findFirst()
|
||||||
|
.get();
|
||||||
this.studentRegisteredGrups.remove(groupToDelete);
|
this.studentRegisteredGrups.remove(groupToDelete);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -236,6 +237,9 @@ public class User {
|
|||||||
* @return ranking points [100;500]
|
* @return ranking points [100;500]
|
||||||
*/
|
*/
|
||||||
public Integer getRanking() {
|
public Integer getRanking() {
|
||||||
|
if (ranking == null) {
|
||||||
|
return 100;
|
||||||
|
}
|
||||||
return ranking;
|
return ranking;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user