Skip to content

Commit 495ba2f

Browse files
committed
Remove static import from InvocableHandlerMethod
See gh-19975
1 parent 9a81d02 commit 495ba2f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@
4242
import org.springframework.web.reactive.HandlerResult;
4343
import org.springframework.web.server.ServerWebExchange;
4444

45-
import static org.springframework.web.reactive.result.method.InvocableHandlerMethodKt.invokeHandlerMethod;
46-
4745
/**
4846
* Extension of {@link HandlerMethod} that invokes the underlying method with
4947
* argument values resolved from the current HTTP request through a list of
@@ -142,7 +140,7 @@ public Mono<HandlerResult> invoke(
142140
ReflectionUtils.makeAccessible(getBridgedMethod());
143141
Method method = getBridgedMethod();
144142
if (KotlinDetector.isKotlinReflectPresent() && KotlinDetector.isKotlinType(method.getDeclaringClass())) {
145-
value = invokeHandlerMethod(method, getBean(), args);
143+
value = InvocableHandlerMethodKt.invokeHandlerMethod(method, getBean(), args);
146144
}
147145
else {
148146
value = method.invoke(getBean(), args);

0 commit comments

Comments
 (0)