Skip to content

Commit 1404358

Browse files
fix_java_doc
1 parent f348a83 commit 1404358

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

mcp-test/src/main/java/io/modelcontextprotocol/server/AbstractMcpAsyncServerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
/**
3232
* Test suite for the {@link McpAsyncServer} that can be used with different
33-
* {@link McpTransportProvider} implementations.
33+
* {@link io.modelcontextprotocol.spec.McpServerTransportProvider} implementations.
3434
*
3535
* @author Christian Tzolov
3636
*/

mcp-test/src/main/java/io/modelcontextprotocol/server/AbstractMcpSyncServerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
/**
2929
* Test suite for the {@link McpSyncServer} that can be used with different
30-
* {@link McpTransportProvider} implementations.
30+
* {@link io.modelcontextprotocol.spec.McpServerTransportProvider} implementations.
3131
*
3232
* @author Christian Tzolov
3333
*/

mcp/src/main/java/io/modelcontextprotocol/client/McpAsyncClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,9 @@ public Mono<Void> closeGracefully() {
302302
* The client MUST initiate this phase by sending an initialize request containing:
303303
* The protocol version the client supports, client's capabilities and clients
304304
* implementation information.
305-
* <p/>
305+
* <p>
306306
* The server MUST respond with its own capabilities and information.
307-
* <p/>
307+
* </p>
308308
* After successful initialization, the client MUST send an initialized notification
309309
* to indicate it is ready to begin normal operations.
310310
* @return the initialize result.

mcp/src/main/java/io/modelcontextprotocol/spec/McpServerSession.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ public class McpServerSession implements McpSession {
6161
* {@link io.modelcontextprotocol.spec.McpSchema.InitializeRequest} is received by the
6262
* server
6363
* @param initNotificationHandler called when a
64-
* {@link McpSchema.METHOD_NOTIFICATION_INITIALIZED} is received.
64+
* {@link io.modelcontextprotocol.spec.McpSchema#METHOD_NOTIFICATION_INITIALIZED} is
65+
* received.
6566
* @param requestHandlers map of request handlers to use
6667
* @param notificationHandlers map of notification handlers to use
6768
*/

0 commit comments

Comments
 (0)