Skip to content

Commit

Permalink
🐳 debugInout 参数打印优化
Browse files Browse the repository at this point in the history
  • Loading branch information
iohao committed Jul 31, 2023
1 parent ef7a5b0 commit b35be20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private void methodRequestParam(FlowContext flowContext, Map<String, Object> par
for (ActionCommand.ParamInfo paramInfo : paramInfos) {
Class<?> paramClazz = paramInfo.getParamClazz();

if (FlowContext.class.equals(paramClazz)) {
if (FlowContext.class.isAssignableFrom(paramClazz)) {
continue;
}

Expand Down

0 comments on commit b35be20

Please sign in to comment.