#82 fix user abbreviate

This commit is contained in:
Anton Romanov 2019-04-05 13:39:53 +04:00
parent 91d2168012
commit 54edeb0559

View File

@ -192,7 +192,7 @@ public class User extends BaseEntity {
public String getUserAbbreviate() { public String getUserAbbreviate() {
return String.format(USER_ABBREVIATE_TEMPLATE, return String.format(USER_ABBREVIATE_TEMPLATE,
lastName == null ? "" : lastName, lastName == null ? "" : lastName,
firstName == null ? "" : firstName.substring(0, 1), firstName == null ? "" : firstName.substring(0, 1) + ".",
patronymic == null ? "" : patronymic.substring(0, 1)); patronymic == null ? "" : patronymic.substring(0, 1) + ".");
} }
} }