Fix error in pull requests

Merge #36
This commit is contained in:
Rubenlagus 2016-04-17 16:43:27 +02:00
parent 3c96f765c3
commit cbe5613549

View File

@ -50,8 +50,8 @@ public class Sticker implements IBotApiObject {
this.fileSize = jsonObject.getInt(FILESIZE_FIELD);
}
}
public String getFileId() {
public String getFileId() {
return fileId;
}
@ -63,10 +63,10 @@ public class Sticker implements IBotApiObject {
return height;
}
public String getThumb() {
public PhotoSize getThumb() {
return thumb;
}
public Integer getFileSize() {
return fileSize;
}