Skip to content

Commit

Permalink
Fix Javadoc references that broke CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Oct 7, 2021
1 parent ef9948b commit 7b1bca6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions api/client/src/main/java/jakarta/websocket/Session.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
import java.util.Map;
import java.util.Set;

import jakarta.websocket.server.ServerEndpointConfig;

/**
* A Web Socket session represents a conversation between two web socket endpoints. As soon as the websocket handshake
* completes successfully, the web socket implementation provides the endpoint an open websocket session. The endpoint
Expand Down Expand Up @@ -311,9 +309,9 @@ public interface Session extends Closeable {
* java.io.Serializable, or the object may not be recreated after a failover.
* <p>
* For server sessions, the initial contents of this Map must be a shallow copy of the user properties map returned
* from {@link ServerEndpointConfig#getUserProperties()} at the point the
* {@link jakarta.websocket.server.ServerEndpointConfig.Configurator#modifyHandshake(ServerEndpointConfig,
* jakarta.websocket.server.HandshakeRequest, HandshakeResponse)} method exits.
* from {@code jakarta.websocket.server.ServerEndpointConfig#getUserProperties()} at the point the
* {@code jakarta.websocket.server.ServerEndpointConfig.Configurator#modifyHandshake()}
* method exits.
* <p>
* For client sessions, the initial contents of this Map must be a shallow copy of the user properties map returned
* from {@link ClientEndpointConfig#getUserProperties()} for the {@link ClientEndpointConfig} passed to
Expand Down

0 comments on commit 7b1bca6

Please sign in to comment.