Reflect criticial changes to JavaDoc docstrings for server #216

Merged
lars.winzer merged 3 commits from chore/29-javadoc-server-errors into main 2026-03-31 12:29:22 +02:00
3 changed files with 2 additions and 3 deletions
Showing only changes of commit e210bd1d49 - Show all commits
@@ -25,7 +25,6 @@ public class Session {
*
* @param transport the transport layer for communication
* @param eventBus the event bus for publishing events
* @throws IOException if an I/O error occurs during initialization
*/
public Session(
TransportLayer transport,
@@ -14,7 +14,7 @@ public class SessionId {
/**
* Creates a new SessionId with the specified UUID.
*
* @param UUID to use for this SessionId
* @param value UUID to use for this SessionId
*/
public SessionId(UUID value) {
this.value = value;
@@ -88,7 +88,7 @@ public class SessionManager {
/**
* Handler for the DisconnectEvent
*
* @param id of the session that disconnected
* @param event the DisconnectEvent to handle
*/
public void onDisconnect(DisconnectEvent event) {
logger.debug("Recieved DisconnectEvent event for session {}", event.sessionId().value());