We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cabfc6c commit 67013c8Copy full SHA for 67013c8
library/src/main/java/com/pengrad/telegrambot/response/GetForumTopicIconStickersResponse.java
@@ -2,23 +2,23 @@
2
3
import com.pengrad.telegrambot.model.Sticker;
4
5
-import java.util.Arrays;
+import java.util.List;
6
7
public class GetForumTopicIconStickersResponse extends BaseResponse {
8
- private Sticker[] result;
+ private List<Sticker> result;
9
10
GetForumTopicIconStickersResponse() {
11
12
}
13
14
- public Sticker[] stickers() {
+ public List<Sticker> stickers() {
15
return result;
16
17
18
@Override
19
public String toString() {
20
return "GetForumTopicIconStickersResponse{" +
21
- "result=" + Arrays.toString(result) +
+ "result=" + result +
22
'}';
23
24
0 commit comments