修复单词拼写错误
parent
b450a4c2af
commit
80ffd4e077
|
@ -133,8 +133,8 @@ public class NodeUtils {
|
||||||
nodes.forEach(node -> {
|
nodes.forEach(node -> {
|
||||||
if (StringUtils.equals(node.getNodeType(), "exportation")){
|
if (StringUtils.equals(node.getNodeType(), "exportation")){
|
||||||
Node nextNode = getPreNode(node, nodeListAll);
|
Node nextNode = getPreNode(node, nodeListAll);
|
||||||
if (!StringUtils.equals(nextNode.getNodeType(), "start") &&
|
if (!StringUtils.equals(nextNode.getNodeType(), "table") &&
|
||||||
!StringUtils.equals(nextNode.getNodeType(), "unit")) {
|
!StringUtils.equals(nextNode.getNodeType(), "unite")) {
|
||||||
throw new TaskException("数据输出节点必须紧跟在数据输入/操作节点之后");
|
throw new TaskException("数据输出节点必须紧跟在数据输入/操作节点之后");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue