Clean code deprecations

Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
This commit is contained in:
Christian Tzolov
2025-05-10 08:26:30 +02:00
parent fb5bf5ffd8
commit 0c96873173
7 changed files with 7 additions and 9 deletions

View File

@@ -140,7 +140,7 @@ You can connect to the weather server using either STDIO or SSE transport:
For servers using SSE transport:
```java
var transport = new HttpClientSseClientTransport("http://localhost:8080");
var transport = HttpClientSseClientTransport.builder("http://localhost:8080").build();
var client = McpClient.sync(transport).build();
```