Skip to content

Commit

Permalink
fix: last name
Browse files Browse the repository at this point in the history
  • Loading branch information
kastnerorz committed Nov 19, 2019
1 parent f10a9d6 commit e70165b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/cn/kastner/oj/domain/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public User(
this.email = email;
this.firstname = firstname;
this.lastname = lastname;
this.name = firstname + lastname;
this.name = lastname + firstname;
this.school = school;
this.authorities = authorities;
}
Expand Down Expand Up @@ -200,7 +200,7 @@ public User(
this.password = password;
this.firstname = firstname;
this.lastname = lastname;
this.name = firstname + lastname;
this.name = lastname + firstname;
this.studentNumber = studentNumber;
this.email = email;
this.school = school;
Expand Down

0 comments on commit e70165b

Please sign in to comment.