mirror of
https://github.com/hs-web/hsweb-framework.git
synced 2026-06-20 16:56:02 +08:00
修复参数类型错误
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user