update - 计算人,需要两种逻辑,一种是跑异常,另一种是不抛异常

This commit is contained in:
wangli 2023-12-12 10:24:57 +08:00
parent e91020b741
commit 93e954b75f

View File

@ -54,7 +54,7 @@ public abstract class AbstractBpmnTaskAssigneeSelector implements BpmnTaskAssign
if (throwException) {
throw t;
} else {
return this.invokeService(userTask, execution, scopeDto);
return Collections.emptyList();
}
}
}