everywhere.z 7 ماه پیش
والد
کامیت
b32b34f919
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/Condition.java

+ 1 - 1
liteflow-core/src/main/java/com/yomahub/liteflow/flow/element/Condition.java

@@ -113,7 +113,7 @@ public abstract class Condition implements Executable{
 
 		List<Node> resultList = new ArrayList<>();
 
-		executableList.stream().forEach(executable -> {
+		executableList.forEach(executable -> {
             if (executable instanceof Condition){
                 resultList.addAll(((Condition)executable).getAllNodeInCondition());
             }else if(executable instanceof Node){