修复单词拼写错误

master
面包骑士 2024-09-05 18:52:21 +08:00
parent b450a4c2af
commit 80ffd4e077
1 changed files with 2 additions and 2 deletions

View File

@ -133,8 +133,8 @@ public class NodeUtils {
nodes.forEach(node -> {
if (StringUtils.equals(node.getNodeType(), "exportation")){
Node nextNode = getPreNode(node, nodeListAll);
if (!StringUtils.equals(nextNode.getNodeType(), "start") &&
!StringUtils.equals(nextNode.getNodeType(), "unit")) {
if (!StringUtils.equals(nextNode.getNodeType(), "table") &&
!StringUtils.equals(nextNode.getNodeType(), "unite")) {
throw new TaskException("数据输出节点必须紧跟在数据输入/操作节点之后");
}
}