Added null checking, fixed overwriting

This commit is contained in:
2023-09-29 23:53:30 +03:00
parent cb9c874367
commit c1d7799be9
9 changed files with 272 additions and 251 deletions

View File

@@ -122,7 +122,7 @@ public class Student implements Serializable {
@Override
public String toString() {
return fullname;
return fullname + " | " + group.getName() + " | " + faculty.getName();
}
}