StdioServerTransportProvider uses incorrect Mono.zip operator

Hello,

I was debugging another issue and looking at the code, and I noticed this line: [#[line]](

java-sdk/mcp/src/main/java/io/modelcontextprotocol/server/transport/StdioServerTransportProvider.java

Line 152 in 2f94434

return Mono.zip(inboundReady.asMono(), outboundReady.asMono()).then(Mono.defer(() -> {

)

When opened in IntelliJ, I noticed this warning being reported:

Image

I am not experienced at all with Mono so I don't know if it's a real problem or not, sharing just in case...