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 3126d32 commit 20c1ff1Copy full SHA for 20c1ff1
bolt-socket-mode/src/test/java/samples/AssistantEventListenerApp.java
@@ -6,8 +6,8 @@
6
import com.slack.api.model.assistant.SuggestedPrompt;
7
import com.slack.api.model.event.*;
8
9
+import java.util.Arrays;
10
import java.util.Collections;
-import java.util.List;
11
12
public class AssistantEventListenerApp {
13
@@ -104,7 +104,7 @@ public static void main(String[] args) throws Exception {
104
.channelId(channelId)
105
.threadTs(threadTs)
106
.status("is analyzing the files...")
107
- .loadingMessages(List.of("Reading bytes...", "Confirming hashes..."))
+ .loadingMessages(Arrays.asList("Reading bytes...", "Confirming hashes..."))
108
);
109
Thread.sleep(500L);
110
ctx.client().chatPostMessage(r -> r
0 commit comments