From 053e2fb87c3791a6bc4f8b755cf660b55e42e35b Mon Sep 17 00:00:00 2001 From: Alex Soto Date: Fri, 22 Nov 2024 11:49:29 +0100 Subject: [PATCH] static keyword is not allowed there. --- docs/modules/ROOT/pages/websockets.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/websockets.adoc b/docs/modules/ROOT/pages/websockets.adoc index 2eead912e..385b87fb6 100644 --- a/docs/modules/ROOT/pages/websockets.adoc +++ b/docs/modules/ROOT/pages/websockets.adoc @@ -42,7 +42,7 @@ import io.quarkus.websockets.next.OnTextMessage; import io.quarkus.websockets.next.WebSocket; @WebSocket(path = "/websocket") -public static class WebSocketChatBot { +public class WebSocketChatBot { private final SessionScopedChatBot bot;