Hisoka-X commented on code in PR #2472:
URL: 
https://github.com/apache/incubator-seatunnel/pull/2472#discussion_r950968564


##########
seatunnel-engine/seatunnel-engine-core/src/main/java/org/apache/seatunnel/engine/core/dag/logical/LogicalDagGenerator.java:
##########
@@ -81,13 +81,13 @@ private void createLogicalVertex(Action action) {
 
     private Set<LogicalEdge> createLogicalEdges() {
         return inputVerticesMap.entrySet()
-            .stream()
-            .map(entry -> entry.getValue()
-                    .stream()
-                    .map(targetId -> new 
LogicalEdge(logicalVertexMap.get(entry.getKey()),
-                        logicalVertexMap.get(targetId)))
-                    .collect(Collectors.toList()))
-            .flatMap(Collection::stream)
-            .collect(Collectors.toSet());
+                .stream()

Review Comment:
   Just use to test, and update by mistake.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to