From 24c7b6729a1b4d5081a12e4a55b866c0c7ab9562 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Julian=20Gro=C3=9F?= <julian.g@posteo.de>
Date: Tue, 18 Jun 2024 22:24:32 +0200
Subject: [PATCH] Remove note about secure WebSockets not being supported.

It just works, even though nobody touched the code in years. Maybe it was broken in older Qt versions?
---
 libraries/script-engine/src/WebSocketClass.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libraries/script-engine/src/WebSocketClass.h b/libraries/script-engine/src/WebSocketClass.h
index da9eec73ff..30baa984e9 100644
--- a/libraries/script-engine/src/WebSocketClass.h
+++ b/libraries/script-engine/src/WebSocketClass.h
@@ -33,8 +33,6 @@ class ScriptEngine;
  * <p>Create using <code>new WebSocket(...)</code> in Interface, client entity, avatar, and server entity scripts, or the 
  * {@link WebSocketServer} class in server entity and assignment client scripts.
  *
- * <p><strong>Note:</strong> Does not support secure, <code>wss:</code> protocol.</p>
- *
  * @class WebSocket
  * @param {string|WebSocket} urlOrWebSocket - The URL to connect to or an existing {@link WebSocket} to reuse the connection of.
  *