Fixed hundreds of small issues, code improvements, typos, ...

This commit is contained in:
2025-01-16 00:25:23 +01:00
parent ace34fc0e8
commit 0ffe3198e6
44 changed files with 331 additions and 351 deletions

View File

@@ -61,7 +61,7 @@ public abstract class AbstractServerWS extends WebSocketAdapter implements Abstr
}
@Override
public final void sendClose(int code, String reason) throws IOException {
public final void sendClose(int code, String reason) {
getSession().close(code, reason);
isClosed = true;
}