Skip to content

Commit d16beb0

Browse files
committed
Polishing
See gh-22900
1 parent c841b62 commit d16beb0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spring-webflux/src/main/java/org/springframework/web/reactive/result/method/InvocableHandlerMethod.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public class InvocableHandlerMethod extends HandlerMethod {
6363

6464
private ReactiveAdapterRegistry reactiveAdapterRegistry = ReactiveAdapterRegistry.getSharedInstance();
6565

66+
6667
/**
6768
* Create an instance from a {@code HandlerMethod}.
6869
*/
@@ -110,8 +111,8 @@ public ParameterNameDiscoverer getParameterNameDiscoverer() {
110111
}
111112

112113
/**
113-
* Configure a reactive registry. This is needed for cases where the response is fully
114-
* handled within the controller in combination with an async void return value.
114+
* Configure a reactive adapter registry. This is needed for cases where the response is
115+
* fully handled within the controller in combination with an async void return value.
115116
* <p>By default this is a {@link ReactiveAdapterRegistry} with default settings.
116117
*/
117118
public void setReactiveAdapterRegistry(ReactiveAdapterRegistry registry) {
@@ -124,7 +125,7 @@ public void setReactiveAdapterRegistry(ReactiveAdapterRegistry registry) {
124125
* @param exchange the current exchange
125126
* @param bindingContext the binding context to use
126127
* @param providedArgs optional list of argument values to match by type
127-
* @return a Mono with a {@link HandlerResult}.
128+
* @return a Mono with a {@link HandlerResult}
128129
*/
129130
public Mono<HandlerResult> invoke(
130131
ServerWebExchange exchange, BindingContext bindingContext, Object... providedArgs) {

0 commit comments

Comments
 (0)