Rename CoroutinesUtils#invokeHandlerMethod to invokeSuspendingFunction
This commit is contained in:
@@ -140,7 +140,7 @@ public class InvocableHandlerMethod extends HandlerMethod {
|
||||
ReflectionUtils.makeAccessible(getBridgedMethod());
|
||||
Method method = getBridgedMethod();
|
||||
if (KotlinDetector.isKotlinReflectPresent() && KotlinDetector.isKotlinType(method.getDeclaringClass())) {
|
||||
value = CoroutinesUtils.invokeHandlerMethod(method, getBean(), args);
|
||||
value = CoroutinesUtils.invokeSuspendingFunction(method, getBean(), args);
|
||||
}
|
||||
else {
|
||||
value = method.invoke(getBean(), args);
|
||||
|
||||
Reference in New Issue
Block a user