Removed unneeded code

This commit is contained in:
Luca Frosini 2021-12-07 14:32:01 +01:00
parent 3ca20138af
commit ceafcdefda
1 changed files with 0 additions and 8 deletions

View File

@ -19,12 +19,4 @@ public interface User {
public String getAbout();
public default String getSurnameName() {
return String.format("%s %s", getFamilyName(), getGivenName());
}
public default String getNameSurname() {
return String.format("%s %s", getGivenName(), getFamilyName());
}
}