!201 组件代理执行方法时的参数判断

Merge pull request !201 from zcl/master
This commit is contained in:
铂赛东
2023-08-02 10:45:22 +00:00
committed by Gitee

View File

@@ -227,7 +227,7 @@ public class ComponentProxy {
}
try {
if (args.length > 0){
if (args != null && args.length > 0){
Object[] wrapArgs = ArrayUtil.insert(args, 0, proxy);
return liteFlowMethodBean.getMethod().invoke(bean, wrapArgs);
}else{