File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
spring-webflux/src/main/java/org/springframework/web/reactive/result/method Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 42
42
import org .springframework .web .reactive .HandlerResult ;
43
43
import org .springframework .web .server .ServerWebExchange ;
44
44
45
- import static org .springframework .web .reactive .result .method .InvocableHandlerMethodKt .invokeHandlerMethod ;
46
-
47
45
/**
48
46
* Extension of {@link HandlerMethod} that invokes the underlying method with
49
47
* argument values resolved from the current HTTP request through a list of
@@ -142,7 +140,7 @@ public Mono<HandlerResult> invoke(
142
140
ReflectionUtils .makeAccessible (getBridgedMethod ());
143
141
Method method = getBridgedMethod ();
144
142
if (KotlinDetector .isKotlinReflectPresent () && KotlinDetector .isKotlinType (method .getDeclaringClass ())) {
145
- value = invokeHandlerMethod (method , getBean (), args );
143
+ value = InvocableHandlerMethodKt . invokeHandlerMethod (method , getBean (), args );
146
144
}
147
145
else {
148
146
value = method .invoke (getBean (), args );
You can’t perform that action at this time.
0 commit comments