Chore: Update Javadoc for Session classes

This commit is contained in:
Lars Simon Winzer
2026-03-31 12:23:30 +02:00
parent 238cf937f4
commit e210bd1d49
3 changed files with 2 additions and 3 deletions
@@ -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());