TelegramBots
TelegramBots copied to clipboard
SendMessage.java issue
SendMessage.java and SendMessage.class dont match. .java is more than half less then .class

You're trying to use the builder pattern on the SendMessage class itself. There's a builder you can use
SendMessage sendMessage = SendMessage.builder()
.chatId("CHAT_ID")
.text("MESSAGE")
.build();
It's normal. Because there is lombok underhood.
It's normal. Because there is lombok underhood.
Thanks for answer, now I get it
You're trying to use the builder pattern on the SendMessage class itself. There's a builder you can use
SendMessage sendMessage = SendMessage.builder() .chatId("CHAT_ID") .text("MESSAGE") .build();
Thank you, I'm blind :D. Digged a little deeper then needed)