修复参数类型错误

This commit is contained in:
zhou-hao
2021-08-03 09:26:54 +08:00
parent 493ecf27ea
commit 988e9851ef

View File

@@ -114,7 +114,7 @@ public class MethodInterceptorHolder {
for (int i = 0; i < args.length; i++) {
Object arg = args[i];
if (arg instanceof Publisher) {
args[i] = handler.apply(((Mono) arg));
args[i] = handler.apply(((Publisher<?>) arg));
handled = true;
}
}