Fix dependency failure (#5239)
Co-authored-by: JinyLeeChina <297062848@qq.com>
This commit is contained in:
parent
cc82a98f50
commit
8c88bfa222
|
|
@ -211,8 +211,10 @@ public class TaskNode {
|
|||
}
|
||||
|
||||
public void setDepList(List<String> depList) {
|
||||
this.depList = depList;
|
||||
this.preTasks = JSONUtils.toJsonString(depList);
|
||||
if (depList != null) {
|
||||
this.depList = depList;
|
||||
this.preTasks = JSONUtils.toJsonString(depList);
|
||||
}
|
||||
}
|
||||
|
||||
public String getLoc() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue