Merge branch '4.1.x'

Closes gh-51577
This commit is contained in:
Andy Wilkinson
2026-09-04 10:07:51 +01:00
3 changed files with 5 additions and 5 deletions
@@ -416,7 +416,7 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi
}
private @Nullable Publisher<?> invoke(InvocationContext invocationContext) {
return (@Nullable Publisher<?>) this.invoker.invoke(invocationContext);
return (Publisher<?>) this.invoker.invoke(invocationContext);
}
private Map<String, Object> getArguments(ServerWebExchange exchange, @Nullable Map<String, String> body) {