Commit fc51d624 by zhanghou

修改由于new Argument增加构造方法,传null值不知道调用那个方法的问题

parent 44c9bc3d
......@@ -445,7 +445,7 @@ public class Modules {
//字符串
if (paramClazz[i].getType().equals(Argument.class)) {
Class clazz = (Class) ((ParameterizedType) paramClazz[i].getParameterizedType()).getActualTypeArguments()[0];
Argument argument = new Argument("", null);
Argument argument = new Argument("", (OpType) null);
Object val = wrapperValue(_this, item, clazz, argument);
argument.value = val;
argsList.add(argument);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment