Remove unneeded constructure

Merge #31
This commit is contained in:
Rubenlagus 2016-04-17 17:07:13 +02:00
parent c1a0b25c9c
commit a84f073a0a

View File

@ -33,11 +33,6 @@ public class InlineKeyboardMarkup implements ReplyKeyboard {
keyboard = new ArrayList<>();
}
public InlineKeyboardMarkup(JSONObject jsonObject) {
super();
this.keyboard = new ArrayList<>();
}
public List<List<InlineKeyboardButton>> getKeyboard() {
return keyboard;
}