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); this.fileSize = jsonObject.getInt(FILESIZE_FIELD);
} }
} }
public String getFileId() { public String getFileId() {
return fileId; return fileId;
} }
@ -63,10 +63,10 @@ public class Sticker implements IBotApiObject {
return height; return height;
} }
public String getThumb() { public PhotoSize getThumb() {
return thumb; return thumb;
} }
public Integer getFileSize() { public Integer getFileSize() {
return fileSize; return fileSize;
} }