give lombok a sense of life

This commit is contained in:
Oliver 2022-07-13 18:10:27 +02:00
parent 39ce902b5f
commit b9d0616774
Signed by: okaestne
GPG Key ID: 06A81B143EA9588F
1 changed files with 1 additions and 8 deletions

View File

@ -19,6 +19,7 @@ public class TUser {
private String lastName;//optional
@Getter
private String langcode; // optional
@Getter
private boolean isBot = false;
private TelegramAPI api = null;
@ -47,14 +48,6 @@ public class TUser {
langcode = o.getString("language_code");
}
public String getLangcode() {
return langcode;
}
public boolean isBot() {
return isBot;
}
public String getName() {
return uname;
}